of     1   

Butterbuds24
#182939878Wednesday, February 03, 2016 6:59 PM GMT

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
DrAquafresh
#182940055Wednesday, February 03, 2016 7:04 PM GMT

have you considered using a debounce? it's a very common issue for this sort of thing.
Butterbuds24
#182940457Wednesday, February 03, 2016 7:15 PM GMT

Ok i changed it to this script.Parent.Touched:connect(onTouch) debounce = false 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 if not debounce then debounce = true game.ReplicatedStorage:findFirstChild("Demonic Ray"):clone().Parent = player.Backpack game.ReplicatedStorage:findFirstChild("Demonic Blast"):clone().Parent = player.Backpack wait(0.5) debounce = false end end script.Parent.Touched:connect(onTouch) But if the player walks on it again and again, he still gets more items.. please help

    of     1