RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"When you walk into the part it makes you run 20"
-- script for part local part = script.Parent 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 = 20 end end end part.Touched:Connect(onTouched)