Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a player spawn with tools (like starterpack but for one player)?

Asked by
trecept 367 Moderation Voter
6 years ago

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?

0
you can use localscript TheSkyofIndia 150 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago
game.Players.PlayerAdded:connect(function(player)

if player.Name == "yourname" then 
game.Lighting.TOOLNAME:clone().Parent = player.Backpack
else
print("Denied")
end)
Ad

Answer this question