Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. --Script made by SGameCreator--
  2. gg.toast('Successfully executed script.')
  3. gg.alert('There may be bugs in this script. If you can help, send me a review on the GameGuardian page')
  4. goto menu
  5.  
  6. ::menu::
  7. menu = gg.choice{'Speed','AirWalking','AmmoHacks','Update Log','Some Walls Completely GONE!','Execute Script Again'}
  8. if menu == 1 then goto SpeedMenu end
  9. if menu == 2 then goto AirWalkingMenu end
  10. if menu == 3 then goto AmmoHacksMenu end
  11. if menu == 4 then goto UpdateLog end
  12. if menu == 5 then goto SomeWallsGone
  13. if menu == 6 then goto ReExecute
  14.  
  15.  
  16. ::SpeedMenu::
  17. menu = gg.choice{'100 Speed','200 Speed','300 Speed','More Coming Soon'}
  18. if menu == 1 then goto 100Speed end
  19. if menu == 2 then goto 200Speed end
  20. if menu == 3 then goto 300Speed end
  21. if menu == 4 then goto MoreComingSoon end
  22.  
  23.  
  24.  
  25. ::AirWalkingMenu::
  26. menu = gg.choice{'AirWalkingOn','AirWalkingOff'}
  27. if menu == 1 then goto AirWalkingOn end
  28. if menu == 2 then goto AirWalkingOff end
  29.  
  30. ::AmmoHacksMenu::
  31. menu = gg.choice{'Remington Gun','AK47 Gun','M9 Gun'}
  32. if menu == 1 then goto RemingtonGunHack end
  33. if menu == 2 then goto AK47GunHack end
  34. if menu == 3 then goto M9GunHack end
  35.  
  36.  
  37.  
  38. ::AirWalkingOn::
  39. gg.searchNumber('1.1', gg.TYPE_FLOAT)
  40. gg.getResults(226)
  41. gg.editAll('100', gg.TYPE_FLOAT)
  42. goto Completed
  43.  
  44. ::AirWalkingOff::
  45. gg.searchNumber('100', gg.TYPE_FLOAT)
  46. gg.getResults(224)
  47. gg.editAll('1.1', gg.TYPE_FLOAT)
  48. goto Completed
  49.  
  50. ::RemingtonGunHack::
  51. gg.searchNumber('6', gg.TYPE_DOUBLE)
  52. gg.getResults(86)
  53. gg.editAll('99999', gg.TYPE_DOUBLE)
  54. goto Completed
  55.  
  56. ::AK47GunHack::
  57. gg.searchNumber('30', gg.TYPE_DOUBLE)
  58. gg.getResults(95)
  59. gg.editAll('99999', gg.TYPE_DOUBLE)
  60. goto Completed
  61.  
  62. ::M9GunHack::
  63. gg.searchNumber('15', gg.TYPE_DOUBLE)
  64. gg.getResults(45)
  65. gg.editAll('99999', gg.TYPE_DOUBLE)
  66. goto Completed
  67.  
  68. ::UpdateLog::
  69. gg.alert('NEW IN 2.0: Added 3 speeds and added some More Coming Soon alerts. There are a few bugs like waiting 99999 seconds to arrest someone, but other than that, everything works. I will reply to all reviews.')
  70. end
  71.  
  72.  
  73. ::100Speed::
  74. gg.searchNumber('16', gg.TYPE_DOUBLE)
  75. gg.getResults(47)
  76. gg.editAll('100', gg.TYPE_DOUBLE)
  77. ::200Speed::
  78. gg.searchNumber('16', gg.TYPE_DOUBLE)
  79. gg.getResults(47)
  80. gg.editAll('200', gg.TYPE_DOUBLE)
  81. goto Completed
  82.  
  83. ::300Speed::
  84. gg.searchNumber('16', gg.TYPE_DOUBLE)
  85. gg.getResults(47)
  86. gg.editAll('300', gg.TYPE_DOUBLE)
  87. goto Completed
  88.  
  89. ::MoreComingSoon::
  90. gg.alert('More things will be coming to this script soon')
  91.  
  92. ::SomeWallsGone::
  93. gg.searchNumber('15', gg.TYPE_FLOAT)
  94. gg.getResults(699)
  95. gg.editAll('-1', gg.TYPE_FLOAT)
  96. goto Completed
  97.  
  98. ::Completed::
  99. gg.toast('Completed')
  100.  
  101. ::ReExecute::
  102. goto menu
  103. gg.toast('Successfully Executed Script')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement