FreeRobloxScripts1

Color Run Auto Win Script

Jun 22nd, 2023 (edited)
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. -- Keybind Is (R)
  2. -- For Mobile Use Keyboard Script
  3. -- Game : https://www.roblox.com/games/6644653750/Color-Run
  4.  
  5. local winkey = "r";
  6.  
  7. local mouse = game.Players.LocalPlayer:GetMouse()
  8. mouse.KeyDown:Connect(function(key)
  9. if key == winkey then
  10. for i,v in pairs(game:GetService("Workspace").Map:GetChildren()) do
  11. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart.BlockTouchPart,v,1)
  12. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart.BlockTouchPart,v,0)
  13. end
  14. end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment