I Need to add a tool to a player 's backpack when they reach a certain level in the game but every time I try I cannot get it to work I’ve tried almost everything and I cannot find a answer
any help would be appreciated
you would want to clone a tool. Example:
local debounce = true
script.Parent.Touched:Connect(function(player)
if debounce == true then
debounce = false
local Pizza = game.ReplicatedStorage.Pizza:Clone()
Pizza.Parent = player.Backpack
wait(4)
debounce = true
end
end)
1 Like