I’m trying to give a tool to a friend, but I’ve tried lots of different scripts and nothing works? Why ?
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local toolToGive = {game.ReplicatedStorage.Tools["Carpet Rainbow Fly"]}
local addTools = function(p)
local player = game.Players:GetPlayerFromCharacter(p)
if player and require(script.UserList)[tostring(player.UserId)] then
local backpack = player:WaitForChild("backpack")
for i, v in pairs(toolToGive) do
local newtool = v:Clone()
newtool.Parent = backpack
end
end
end
print('sent')
workspace.ChildAdded:Connect(addTools)
for i, v in pairs (workspace:GetChildren()) do
addTools(v)
end
print('oue')
Have you looked in the output, but the Backpack has been written wrong, the first B should be capital “Backpack” ? Even though, you could have scripted it a lot easier than waiting for child to be added.
local Tool = game.ReplicatedStorage.Tools.RainbowMagicCarpet
game.Players.PlayerAdded:Connect(function(Player)
if Player.UserId == 2667070311 then
local Clone = Tool:Clone()
Clone = Player.Backpack
end
end)
local Tool = game.ReplicatedStorage.Tools.RainbowMagicCarpet
game.Players.PlayerAdded:Connect(function(Player)
if Player.UserId == 2667070311 then
local Clone = Tool:Clone()
Clone.Parent = Player.Backpack
end
end)
Are you writing the script in the client or in the serverscript, even though I meant Output not Console, because Output is generally and Console is seperated by Server and Client as you can see the buttons in the screenshot.