Advertisement
tabnation

roblox

Mar 13th, 2021
1,895
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. f12::reload
  2.  
  3. ;Jump a lot
  4. f1::
  5. send {space down}
  6. return
  7.  
  8. ;spam space instead of hold
  9. ;f1::
  10. loop{
  11. send {space}
  12. sleep 500
  13. }
  14. return
  15.  
  16. ; run a lot
  17. f2::
  18. loop{
  19. send {w down}
  20. sleep 1000
  21. send {w up}
  22. send {s down}
  23. sleep 1000
  24. send {s up}
  25. }
  26. return
  27.  
  28. ;click a lot
  29. f3::
  30. loop{
  31. click
  32. sleep 500
  33. }
  34. return
  35.  
  36. ;lets do them all over kill style
  37. f4::
  38. send {space down}
  39. loop{
  40. send {w down}
  41. click
  42. sleep 1000
  43. send {w up}
  44. click
  45. send {s down}
  46. click
  47. sleep 1000
  48. send {s up}
  49. }
  50. return
  51.  
  52. ;chat bot
  53. f6::
  54. send /
  55. sleep 250
  56. send hi whats up? {enter}
  57. sleep 3000
  58. send /
  59. sleep 250
  60. send fight me bra!!!!!! {enter}
  61. return
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement