Given a tool for a specific player

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')

module script :

return {
	['1590375782'] = true
}

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.

This one too doesnt work

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)

Because you have forgot to set the Parent? You just did Clone and not Clone.Parent, are you even reading the output?

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)

output :

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.

It’s okay, my friend explained it to me, I just forgot this line, I didn’t know the importance of that.
thanks !

Player.CharacterAdded:Connect(function()

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.