#Script isn't working
1 messages · Page 1 of 1 (latest)
Put the tool somewhere else beside workspace
just put the tool in starterpack
try:
local tool = game.Workspace.Tool
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local player = Players:GetPlayerFromCharacter(char)
local newTool = tool:Clone()
newTool.Parent = plr:WaitForChild("Backpack")
end)
end)