script.Parent.Touched:connect(onTouch)
function getPlayer(humanoid)
local players = game.Players:children()
for i = 1, #players do
if players[i].Character.Humanoid == humanoid then return players[i] end
end
return nil
end
function onTouch(part)
local human = part.Parent:findFirstChild("Humanoid")
if (human == nil) then return end
local player = getPlayer(human)
if (player == nil) then return end
game.ReplicatedStorage:findFirstChild("Demonic Ray"):clone().Parent = player.Backpack
game.ReplicatedStorage:findFirstChild("Demonic Blast"):clone().Parent = player.Backpack
wait(0.5)
end
script.Parent.Touched:connect(onTouch)
The problem with this script is that when I touch the brick for the tools, it keeps repeating and I end up with a 100 tools. Can someone help make it so that it only gives the 2 moves and no more until the player resets or dies and doesn't have those moves anymore, so he can get them again
|