RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"When you walk into the park it makes you run 20"
-- script for park entrance local part = script.Parent local defaultSpeed = 16 local parkSpeed = 20 local function onTouched(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = parkSpeed wait(5) humanoid.WalkSpeed = defaultSpeed end end end part.Touched:Connect(onTouched)