RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"when touch a part the speed of the player is fast"
-- local script local part = script.Parent local function speedUp(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then player.Character.Humanoid.WalkSpeed = 50 end end part.Touched:Connect(speedUp)