HHLExploits

Tmr my bday

Oct 8th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. Action = game:GetService("Players").LocalPlayer.PlayerGui.CookingGui.Frame.TextLabel
  2.  
  3. while wait() do
  4. if Action.Text == "Move Mouse Left and Right" then
  5. repeat
  6. mousemoverel(200, 0)
  7. wait()
  8. mousemoverel(-200, 0)
  9. wait()
  10. until Action.Text ~= "Move Mouse Left and Right"
  11. elseif Action.Text == "Spin the Mouse" then
  12. repeat
  13. mousemoverel(100, 100)
  14. wait()
  15. mousemoverel(-100, 100)
  16. wait()
  17. mousemoverel(-100, -100)
  18. wait()
  19. mousemoverel(100, -100)
  20. wait()
  21. until Action.Text ~= "Spin the Mouse"
  22. elseif Action.Text == "Click Rapidly" or Action.Text:sub(1, 13) == "Click Rapidly" or Action.Text == "Click" then
  23. repeat
  24. mouse1click()
  25. wait()
  26. until Action.Text ~= "Click Rapidly" and Action.Text:sub(1, 13) ~= "Click Rapidly" and Action.Text ~= "Click"
  27. elseif Action.Text:sub(1, 7) == "Press W" then
  28. repeat
  29. keypress(0x57)
  30. wait()
  31. keyrelease(0x57)
  32. wait()
  33. until Action.Text:sub(1, 7) ~= "Press W"
  34. elseif Action.Text:sub(1, 7) == "Press A" then
  35. repeat
  36. keypress(0x41)
  37. wait()
  38. keyrelease(0x41)
  39. wait()
  40. until Action.Text:sub(1, 7) ~= "Press A"
  41. elseif Action.Text:sub(1, 7) == "Press S" then
  42. repeat
  43. keypress(0x53)
  44. wait()
  45. keyrelease(0x53)
  46. wait()
  47. until Action.Text:sub(1, 7) ~= "Press S"
  48. elseif Action.Text:sub(1, 7) == "Press D" then
  49. repeat
  50. keypress(0x44)
  51. wait()
  52. keyrelease(0x44)
  53. wait()
  54. until Action.Text:sub(1, 7) ~= "Press D"
  55. end
  56. end
Add Comment
Please, Sign In to add comment