RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"part named red orb must give player permant speed boost 1"
-- script for red orb local part = script.Parent local speedBoost = 1 local function giveSpeedBoost(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = humanoid.WalkSpeed + speedBoost part:Destroy() end end end part.Touched:Connect(giveSpeedBoost)