RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a event that when a orb is touched player gains permant speed boost"
-- server script for orb local orb = script.Parent local function speedBoost(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then player.Character.Humanoid.WalkSpeed = player.Character.Humanoid.WalkSpeed + 10 wait(5) player.Character.Humanoid.WalkSpeed = player.Character.Humanoid.WalkSpeed - 10 end end orb.Touched:Connect(speedBoost)