I've been seeing games with jetpacks on your back when you spawn in and stuff. Im wondering how to do that for example the game impulse spawns with jetpacks and a gun in your hand you dont have to click a number its just there already so Im wondering how to do that too.
You would use something like this:
function PlayerToSetup(Player) --[[ Code to weld the suit to the character ]]-- end game.Players.PlayerAdded:connect( function(Player) PlayerToSetup(Player) Player.Backpack["Tool you want to equip"].Parent = Player.Character end )