local debounce = false
local player = game:GetService(“StarterPack”).Speed
script.Parent.Touched:Connect(function(hit)
if hit.Name == “RightHand” then
if hit.Parent:FindFirstChild(“Humanoid”) then
if debounce == false then
local player = game.Players:FindFirstChild(hit.Parent.Name)
player.leaderstats.Speed.Value = player.leaderstats.Speed.Value + 10
debounce = true
wait(3)
debounce = false
end
end
end
end)