I want to make an equip option for this shop I'm making, and I'm wondering how do I make a player spawn with a tool equipped, as if it was in starterpack but for only one player?
game.Players.PlayerAdded:connect(function(player) if player.Name == "yourname" then game.Lighting.TOOLNAME:clone().Parent = player.Backpack else print("Denied") end)