I want that if a player joins and his name is rinus17 , He'll get some tools in his backpack automaticly
This is a script which is in workspace.
Player = game.Players.LocalPlayer function Added(Player) if Player.Name == "rinus17" then game.Lighting.Emi:clone().Parent = Player.BackPack end end game.Players.PlayerAdded:conncet(Added)
function Added(Player) if Player.Name == "rinus17" then local emi = game.Lighting:WaitForChild("Emi") emi:Clone().Parent = Player:WaitForChild("Backpack") emi:Clone().Parent = Player:WaitForChild("StarterGear") end end game.Players.PlayerAdded:conncet(Added)
Lighting
. Hope this helped and please +1 and accept answer.