// Made by Fluffy Bumblebee
onEvent('player.logged_in', event => {
if (!event.player.stages.has('starting_items')) {
event.player.stages.add('starting_items');
event.player.give('ad_astra:earth_globe');
event.player.give('anim_guns:pistol_light');
event.player.give(Item.of('anim_guns:standard_handgun_cartridge', 25));
event.player.give('minecraft:stone_axe');
}
})
Above is my current script.
