Advertisement
luisipad

Untitled

Jun 2nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. print("Indexing Locals")
  2. local VirtualUser = game:GetService("VirtualUser")
  3. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  4. local LocalClient = game.Players.LocalPlayer
  5. print("Starting Anti Afk")
  6. game:GetService("Players").LocalPlayer.Idled:connect(function()
  7. VirtualUser:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  8. wait(1)
  9. VirtualUser:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  10. end)
  11. print("Getting VIP")
  12. LocalClient.VIP.Value = true
  13. print("Starting Farm Loop")
  14. while true do
  15. wait()
  16. if LocalClient.leaderstats.Level.Value == 39 then
  17. Event:FireServer("LevelUp")
  18. end
  19. LocalClient.LiftCooldown.Value = 0
  20. Event:FireServer("Lift")
  21. LocalClient.PunchCooldown.Value = 0
  22. Event:FireServer("Punch", "GoldBag")
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement