Advertisement
dady172172

Speed Simulator X

Nov 7th, 2019
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.45 KB | None | 0 0
  1. --https://www.roblox.com/games/3011079475/THE-KEY-QUEST-Speed-Simulator-X
  2. --https://github.com/dady172172/Roblox-Cheats
  3. _G.AutoClicker = false
  4. _G.AutoRebirth = false
  5. _G.Collecter = true
  6.  
  7. --Collect coins and energy
  8. while _G.Collecter == true do
  9.     Wait(.01)
  10.     local coin = game:GetService("Workspace"):FindFirstChild("Coin")
  11.     local energy = game:GetService("Workspace"):FindFirstChild("Energy")
  12.     if coin ~= nil then
  13.         local coinMainWorld = coin:FindFirstChild("Coin")
  14.         if coinMainWorld ~= nil then
  15.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = coin.Coin.CFrame
  16.         else
  17.             for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
  18.                 if _G.Collecter == false then return end
  19.                 if v.Name == "Coin" then
  20.                     wait()
  21.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  22.                 end
  23.             end
  24.         end
  25.     end
  26.     if energy ~= nil then
  27.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = energy.HitBox.CFrame
  28.     end  
  29. end
  30.  
  31.  
  32. --clicker
  33.  
  34. while _G.AutoClicker == true do
  35.     local virtualUser = game:GetService('VirtualUser')
  36.     virtualUser:CaptureController()
  37.     wait(0.116159)
  38.     virtualUser:SetKeyUp('0x11a')
  39.     wait(0.399961)
  40.     virtualUser:Button1Down(Vector2.new(-0.0, -0.0), CFrame.new(-0.0, 0.0, -0.0, -0.0, 0.0, 0.0, 0.0))
  41.     virtualUser:SetKeyDown('0x11a')
  42. end
  43.  
  44. while _G.AutoRebirth == true do
  45.     wait(1)
  46.     game:GetService("ReplicatedStorage").RemoteEvents.Rebirth:FireServer()
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement