Advertisement
Sykotic_Cataclysm

SPTSScript

Feb 1st, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 66.43 KB | None | 0 0
  1. -- Instances
  2.  
  3. local SuperPowerTrainingSim = Instance.new("ScreenGui")
  4. local MainFrame = Instance.new("Frame")
  5. local TeleportsButton = Instance.new("TextButton")
  6. local AutoButton = Instance.new("TextButton")
  7. local TPTypeFrame = Instance.new("Frame")
  8. local FistButton = Instance.new("TextButton")
  9. local BodyButton = Instance.new("TextButton")
  10. local PsychicButton = Instance.new("TextButton")
  11. local FistTPFrame = Instance.new("Frame")
  12. local RockButton = Instance.new("TextButton")
  13. local CrystalButton = Instance.new("TextButton")
  14. local BlueStarButton = Instance.new("TextButton")
  15. local GreenStarButton = Instance.new("TextButton")
  16. local RedStarButton = Instance.new("TextButton")
  17. local RockRequire = Instance.new("TextLabel")
  18. local CrystalRequire = Instance.new("TextLabel")
  19. local BlueStarRequire = Instance.new("TextLabel")
  20. local GreenStarRequire = Instance.new("TextLabel")
  21. local RedStarRequire = Instance.new("TextLabel")
  22. local ToughTPFrame = Instance.new("Frame")
  23. local IceBathButton = Instance.new("TextButton")
  24. local IceBathRequire = Instance.new("TextLabel")
  25. local LavaBathButton = Instance.new("TextButton")
  26. local LavaBathRequire = Instance.new("TextLabel")
  27. local IcebergButton = Instance.new("TextButton")
  28. local IcebergRequire = Instance.new("TextLabel")
  29. local TornadoButton = Instance.new("TextButton")
  30. local TornadoRequire = Instance.new("TextLabel")
  31. local VolcanoButton = Instance.new("TextButton")
  32. local VolcanoRequire = Instance.new("TextLabel")
  33. local HellFirePitButton = Instance.new("TextButton")
  34. local HellFirePitRequire = Instance.new("TextLabel")
  35. local AcidPool1Button = Instance.new("TextButton")
  36. local AcidPool1Require = Instance.new("TextLabel")
  37. local AcidPool2Button = Instance.new("TextButton")
  38. local AcidPool2Require = Instance.new("TextLabel")
  39. local PsychicTPFrame = Instance.new("Frame")
  40. local FirstLawnButton = Instance.new("TextButton")
  41. local FirstLawnRequire = Instance.new("TextLabel")
  42. local SecondLawnButton = Instance.new("TextButton")
  43. local SecondLawnRequire = Instance.new("TextLabel")
  44. local BridgeButton = Instance.new("TextButton")
  45. local BridgeRequire = Instance.new("TextLabel")
  46. local WaterfallButton = Instance.new("TextButton")
  47. local WaterfallRequire = Instance.new("TextLabel")
  48. local OtherTPButton = Instance.new("TextButton")
  49. local OtherTPFrame = Instance.new("Frame")
  50. local QuesterTPButton = Instance.new("TextButton")
  51. local SafetyKeyButton = Instance.new("TextButton")
  52. local SafetyKeyHere = Instance.new("TextBox")
  53. local SafetyInfo = Instance.new("TextLabel")
  54. local LowHealthTPButton = Instance.new("TextButton")
  55. local HealthPercentButton = Instance.new("TextButton")
  56. local HealthHere = Instance.new("TextBox")
  57. local LowHealthInfo = Instance.new("TextLabel")
  58. local TPQuesterButton = Instance.new("TextButton")
  59. local AutoFarmFrame = Instance.new("Frame")
  60. local AutoFist = Instance.new("TextButton")
  61. local AutoTough = Instance.new("TextButton")
  62. local AutoSpeed = Instance.new("TextButton")
  63. local AutoJump = Instance.new("TextButton")
  64. local AutoPsychic = Instance.new("TextButton")
  65. local FeaturesFrame = Instance.new("Frame")
  66. local ESPButton = Instance.new("TextButton")
  67. local DeathReturnButton = Instance.new("TextButton")
  68. local PlayerTPButton = Instance.new("TextButton")
  69. local SkipSathButton = Instance.new("TextButton")
  70. local PlayerName = Instance.new("TextBox")
  71. local Notes = Instance.new("TextLabel")
  72. local ToughNote = Instance.new("TextLabel")
  73. local SpeedJumpNote = Instance.new("TextLabel")
  74. local AntiAFKButton = Instance.new("TextButton")
  75. local TPToolButton = Instance.new("TextButton")
  76. local NoClipButton = Instance.new("TextButton")
  77. local StatsFrame = Instance.new("Frame")
  78. local FistStrength = Instance.new("TextLabel")
  79. local BodyToughness = Instance.new("TextLabel")
  80. local MovementSpeed = Instance.new("TextLabel")
  81. local JumpForce = Instance.new("TextLabel")
  82. local PsychicPower = Instance.new("TextLabel")
  83. local MovementAmount = Instance.new("TextLabel")
  84. local FistAmount = Instance.new("TextLabel")
  85. local BodyAmount = Instance.new("TextLabel")
  86. local JumpAmount = Instance.new("TextLabel")
  87. local PsychicAmount = Instance.new("TextLabel")
  88. local ExtraButton = Instance.new("TextButton")
  89. local StatsButton = Instance.new("TextButton")
  90.  
  91. --Properties
  92.  
  93. SuperPowerTrainingSim.Name = "SuperPowerTrainingSim"
  94. SuperPowerTrainingSim.Parent = game.CoreGui
  95.  
  96. MainFrame.Name = "MainFrame"
  97. MainFrame.Parent = SuperPowerTrainingSim
  98. MainFrame.AnchorPoint = Vector2.new(0, 0.5)
  99. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  100. MainFrame.BackgroundTransparency = 0.5
  101. MainFrame.BorderSizePixel = 4
  102. MainFrame.Position = UDim2.new(0.00499999989, 0, 0.5, 0)
  103. MainFrame.Size = UDim2.new(0, 80, 0, 320)
  104.  
  105. TeleportsButton.Name = "TeleportsButton"
  106. TeleportsButton.Parent = MainFrame
  107. TeleportsButton.BackgroundColor3 = Color3.new(0, 0, 0)
  108. TeleportsButton.BackgroundTransparency = 0.5
  109. TeleportsButton.Size = UDim2.new(0, 80, 0, 80)
  110. TeleportsButton.Font = Enum.Font.Fantasy
  111. TeleportsButton.Text = "Teleports"
  112. TeleportsButton.TextColor3 = Color3.new(1, 1, 1)
  113. TeleportsButton.TextSize = 20
  114. TeleportsButton.TextWrapped = true
  115.  
  116. AutoButton.Name = "AutoButton"
  117. AutoButton.Parent = MainFrame
  118. AutoButton.BackgroundColor3 = Color3.new(0, 0, 0)
  119. AutoButton.BackgroundTransparency = 0.5
  120. AutoButton.Position = UDim2.new(0, 0, 0.25, 0)
  121. AutoButton.Size = UDim2.new(0, 80, 0, 80)
  122. AutoButton.Font = Enum.Font.Fantasy
  123. AutoButton.Text = "Auto Farms"
  124. AutoButton.TextColor3 = Color3.new(1, 1, 1)
  125. AutoButton.TextSize = 20
  126. AutoButton.TextWrapped = true
  127.  
  128. TPTypeFrame.Name = "TPTypeFrame"
  129. TPTypeFrame.Parent = MainFrame
  130. TPTypeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  131. TPTypeFrame.BackgroundTransparency = 0.5
  132. TPTypeFrame.BorderSizePixel = 4
  133. TPTypeFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  134. TPTypeFrame.Size = UDim2.new(0, 80, 0, 320)
  135. TPTypeFrame.Visible = false
  136.  
  137. FistButton.Name = "FistButton"
  138. FistButton.Parent = TPTypeFrame
  139. FistButton.BackgroundColor3 = Color3.new(0, 0, 0)
  140. FistButton.BackgroundTransparency = 0.5
  141. FistButton.Size = UDim2.new(0, 80, 0, 80)
  142. FistButton.Font = Enum.Font.Fantasy
  143. FistButton.Text = "Fist Strength"
  144. FistButton.TextColor3 = Color3.new(1, 1, 1)
  145. FistButton.TextSize = 18
  146. FistButton.TextWrapped = true
  147.  
  148. BodyButton.Name = "BodyButton"
  149. BodyButton.Parent = TPTypeFrame
  150. BodyButton.BackgroundColor3 = Color3.new(0, 0, 0)
  151. BodyButton.BackgroundTransparency = 0.5
  152. BodyButton.Position = UDim2.new(0, 0, 0.25, 0)
  153. BodyButton.Size = UDim2.new(0, 80, 0, 80)
  154. BodyButton.Font = Enum.Font.Fantasy
  155. BodyButton.Text = "Body Toughness"
  156. BodyButton.TextColor3 = Color3.new(1, 1, 1)
  157. BodyButton.TextSize = 18
  158. BodyButton.TextWrapped = true
  159.  
  160. PsychicButton.Name = "PsychicButton"
  161. PsychicButton.Parent = TPTypeFrame
  162. PsychicButton.BackgroundColor3 = Color3.new(0, 0, 0)
  163. PsychicButton.BackgroundTransparency = 0.5
  164. PsychicButton.Position = UDim2.new(0, 0, 0.5, 0)
  165. PsychicButton.Size = UDim2.new(0, 80, 0, 80)
  166. PsychicButton.Font = Enum.Font.Fantasy
  167. PsychicButton.Text = "Psychic Power"
  168. PsychicButton.TextColor3 = Color3.new(1, 1, 1)
  169. PsychicButton.TextSize = 18
  170. PsychicButton.TextWrapped = true
  171.  
  172. FistTPFrame.Name = "FistTPFrame"
  173. FistTPFrame.Parent = TPTypeFrame
  174. FistTPFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  175. FistTPFrame.BackgroundTransparency = 0.5
  176. FistTPFrame.BorderSizePixel = 4
  177. FistTPFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  178. FistTPFrame.Size = UDim2.new(0, 150, 0, 250)
  179. FistTPFrame.Visible = false
  180.  
  181. RockButton.Name = "RockButton"
  182. RockButton.Parent = FistTPFrame
  183. RockButton.BackgroundColor3 = Color3.new(0, 0, 0)
  184. RockButton.BackgroundTransparency = 0.5
  185. RockButton.Size = UDim2.new(0, 150, 0, 25)
  186. RockButton.Font = Enum.Font.Fantasy
  187. RockButton.Text = "Rock - 10x"
  188. RockButton.TextColor3 = Color3.new(1, 1, 1)
  189. RockButton.TextSize = 14
  190. RockButton.TextWrapped = true
  191.  
  192. CrystalButton.Name = "CrystalButton"
  193. CrystalButton.Parent = FistTPFrame
  194. CrystalButton.BackgroundColor3 = Color3.new(0, 0, 0)
  195. CrystalButton.BackgroundTransparency = 0.5
  196. CrystalButton.Position = UDim2.new(0, 0, 0.200000003, 0)
  197. CrystalButton.Size = UDim2.new(0, 150, 0, 25)
  198. CrystalButton.Font = Enum.Font.Fantasy
  199. CrystalButton.Text = "Cloud Crystal - 100x"
  200. CrystalButton.TextColor3 = Color3.new(1, 1, 1)
  201. CrystalButton.TextSize = 14
  202. CrystalButton.TextWrapped = true
  203.  
  204. BlueStarButton.Name = "BlueStarButton"
  205. BlueStarButton.Parent = FistTPFrame
  206. BlueStarButton.BackgroundColor3 = Color3.new(0, 0, 0)
  207. BlueStarButton.BackgroundTransparency = 0.5
  208. BlueStarButton.Position = UDim2.new(0, 0, 0.400000006, 0)
  209. BlueStarButton.Size = UDim2.new(0, 150, 0, 25)
  210. BlueStarButton.Font = Enum.Font.Fantasy
  211. BlueStarButton.Text = "Blue God Star - 2k x"
  212. BlueStarButton.TextColor3 = Color3.new(1, 1, 1)
  213. BlueStarButton.TextSize = 14
  214. BlueStarButton.TextWrapped = true
  215.  
  216. GreenStarButton.Name = "GreenStarButton"
  217. GreenStarButton.Parent = FistTPFrame
  218. GreenStarButton.BackgroundColor3 = Color3.new(0, 0, 0)
  219. GreenStarButton.BackgroundTransparency = 0.5
  220. GreenStarButton.Position = UDim2.new(0, 0, 0.600000024, 0)
  221. GreenStarButton.Size = UDim2.new(0, 150, 0, 25)
  222. GreenStarButton.Font = Enum.Font.Fantasy
  223. GreenStarButton.Text = "Green God Star - 40k x"
  224. GreenStarButton.TextColor3 = Color3.new(1, 1, 1)
  225. GreenStarButton.TextSize = 14
  226. GreenStarButton.TextWrapped = true
  227.  
  228. RedStarButton.Name = "RedStarButton"
  229. RedStarButton.Parent = FistTPFrame
  230. RedStarButton.BackgroundColor3 = Color3.new(0, 0, 0)
  231. RedStarButton.BackgroundTransparency = 0.5
  232. RedStarButton.Position = UDim2.new(0, 0, 0.800000012, 0)
  233. RedStarButton.Size = UDim2.new(0, 150, 0, 25)
  234. RedStarButton.Font = Enum.Font.Fantasy
  235. RedStarButton.Text = "Red God Star - 800k x"
  236. RedStarButton.TextColor3 = Color3.new(1, 1, 1)
  237. RedStarButton.TextSize = 14
  238. RedStarButton.TextWrapped = true
  239.  
  240. RockRequire.Name = "RockRequire"
  241. RockRequire.Parent = FistTPFrame
  242. RockRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  243. RockRequire.BackgroundTransparency = 1
  244. RockRequire.BorderSizePixel = 0
  245. RockRequire.Position = UDim2.new(0, 0, 0.100000001, 0)
  246. RockRequire.Size = UDim2.new(0, 150, 0, 25)
  247. RockRequire.Font = Enum.Font.Fantasy
  248. RockRequire.Text = "No Requirements"
  249. RockRequire.TextColor3 = Color3.new(1, 1, 1)
  250. RockRequire.TextSize = 14
  251.  
  252. CrystalRequire.Name = "CrystalRequire"
  253. CrystalRequire.Parent = FistTPFrame
  254. CrystalRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  255. CrystalRequire.BackgroundTransparency = 1
  256. CrystalRequire.BorderSizePixel = 0
  257. CrystalRequire.Position = UDim2.new(0, 0, 0.300000012, 0)
  258. CrystalRequire.Size = UDim2.new(0, 150, 0, 25)
  259. CrystalRequire.Font = Enum.Font.Fantasy
  260. CrystalRequire.Text = "No Requirements"
  261. CrystalRequire.TextColor3 = Color3.new(1, 1, 1)
  262. CrystalRequire.TextSize = 14
  263.  
  264. BlueStarRequire.Name = "BlueStarRequire"
  265. BlueStarRequire.Parent = FistTPFrame
  266. BlueStarRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  267. BlueStarRequire.BackgroundTransparency = 1
  268. BlueStarRequire.BorderSizePixel = 0
  269. BlueStarRequire.Position = UDim2.new(0, 0, 0.5, 0)
  270. BlueStarRequire.Size = UDim2.new(0, 150, 0, 25)
  271. BlueStarRequire.Font = Enum.Font.Fantasy
  272. BlueStarRequire.Text = "Need 1B Fist Strength"
  273. BlueStarRequire.TextColor3 = Color3.new(1, 1, 1)
  274. BlueStarRequire.TextSize = 14
  275.  
  276. GreenStarRequire.Name = "GreenStarRequire"
  277. GreenStarRequire.Parent = FistTPFrame
  278. GreenStarRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  279. GreenStarRequire.BackgroundTransparency = 1
  280. GreenStarRequire.BorderSizePixel = 0
  281. GreenStarRequire.Position = UDim2.new(0, 0, 0.699999988, 0)
  282. GreenStarRequire.Size = UDim2.new(0, 150, 0, 25)
  283. GreenStarRequire.Font = Enum.Font.Fantasy
  284. GreenStarRequire.Text = "Need 100B Fist Strength"
  285. GreenStarRequire.TextColor3 = Color3.new(1, 1, 1)
  286. GreenStarRequire.TextSize = 14
  287.  
  288. RedStarRequire.Name = "RedStarRequire"
  289. RedStarRequire.Parent = FistTPFrame
  290. RedStarRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  291. RedStarRequire.BackgroundTransparency = 1
  292. RedStarRequire.BorderSizePixel = 0
  293. RedStarRequire.Position = UDim2.new(0, 0, 0.899999976, 0)
  294. RedStarRequire.Size = UDim2.new(0, 150, 0, 25)
  295. RedStarRequire.Font = Enum.Font.Fantasy
  296. RedStarRequire.Text = "Need 10T Fist Strength"
  297. RedStarRequire.TextColor3 = Color3.new(1, 1, 1)
  298. RedStarRequire.TextSize = 14
  299.  
  300. ToughTPFrame.Name = "ToughTPFrame"
  301. ToughTPFrame.Parent = TPTypeFrame
  302. ToughTPFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  303. ToughTPFrame.BackgroundTransparency = 0.5
  304. ToughTPFrame.BorderSizePixel = 4
  305. ToughTPFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  306. ToughTPFrame.Size = UDim2.new(0, 150, 0, 400)
  307. ToughTPFrame.Visible = false
  308.  
  309. IceBathButton.Name = "IceBathButton"
  310. IceBathButton.Parent = ToughTPFrame
  311. IceBathButton.BackgroundColor3 = Color3.new(0, 0, 0)
  312. IceBathButton.BackgroundTransparency = 0.5
  313. IceBathButton.Size = UDim2.new(0, 150, 0, 25)
  314. IceBathButton.Font = Enum.Font.Fantasy
  315. IceBathButton.Text = "Ice Bath - 5x"
  316. IceBathButton.TextColor3 = Color3.new(1, 1, 1)
  317. IceBathButton.TextSize = 14
  318. IceBathButton.TextWrapped = true
  319.  
  320. IceBathRequire.Name = "IceBathRequire"
  321. IceBathRequire.Parent = ToughTPFrame
  322. IceBathRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  323. IceBathRequire.BackgroundTransparency = 1
  324. IceBathRequire.BorderSizePixel = 0
  325. IceBathRequire.Position = UDim2.new(0, 0, 0.0625, 0)
  326. IceBathRequire.Size = UDim2.new(0, 150, 0, 25)
  327. IceBathRequire.Font = Enum.Font.Fantasy
  328. IceBathRequire.Text = "Need 100 Body Toughness"
  329. IceBathRequire.TextColor3 = Color3.new(1, 1, 1)
  330. IceBathRequire.TextSize = 14
  331.  
  332. LavaBathButton.Name = "LavaBathButton"
  333. LavaBathButton.Parent = ToughTPFrame
  334. LavaBathButton.BackgroundColor3 = Color3.new(0, 0, 0)
  335. LavaBathButton.BackgroundTransparency = 0.5
  336. LavaBathButton.Position = UDim2.new(0, 0, 0.125, 0)
  337. LavaBathButton.Size = UDim2.new(0, 150, 0, 25)
  338. LavaBathButton.Font = Enum.Font.Fantasy
  339. LavaBathButton.Text = "Lava Bath - 10x"
  340. LavaBathButton.TextColor3 = Color3.new(1, 1, 1)
  341. LavaBathButton.TextSize = 14
  342. LavaBathButton.TextWrapped = true
  343.  
  344. LavaBathRequire.Name = "LavaBathRequire"
  345. LavaBathRequire.Parent = ToughTPFrame
  346. LavaBathRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  347. LavaBathRequire.BackgroundTransparency = 1
  348. LavaBathRequire.BorderSizePixel = 0
  349. LavaBathRequire.Position = UDim2.new(0, 0, 0.187000006, 0)
  350. LavaBathRequire.Size = UDim2.new(0, 150, 0, 25)
  351. LavaBathRequire.Font = Enum.Font.Fantasy
  352. LavaBathRequire.Text = "Need 10K Body Toughness"
  353. LavaBathRequire.TextColor3 = Color3.new(1, 1, 1)
  354. LavaBathRequire.TextSize = 14
  355.  
  356. IcebergButton.Name = "IcebergButton"
  357. IcebergButton.Parent = ToughTPFrame
  358. IcebergButton.BackgroundColor3 = Color3.new(0, 0, 0)
  359. IcebergButton.BackgroundTransparency = 0.5
  360. IcebergButton.Position = UDim2.new(0, 0, 0.25, 0)
  361. IcebergButton.Size = UDim2.new(0, 150, 0, 25)
  362. IcebergButton.Font = Enum.Font.Fantasy
  363. IcebergButton.Text = "Iceberg - 20x"
  364. IcebergButton.TextColor3 = Color3.new(1, 1, 1)
  365. IcebergButton.TextSize = 14
  366. IcebergButton.TextWrapped = true
  367.  
  368. IcebergRequire.Name = "IcebergRequire"
  369. IcebergRequire.Parent = ToughTPFrame
  370. IcebergRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  371. IcebergRequire.BackgroundTransparency = 1
  372. IcebergRequire.BorderSizePixel = 0
  373. IcebergRequire.Position = UDim2.new(0, 0, 0.312000006, 0)
  374. IcebergRequire.Size = UDim2.new(0, 150, 0, 25)
  375. IcebergRequire.Font = Enum.Font.Fantasy
  376. IcebergRequire.Text = "Need 100K Body Toughness"
  377. IcebergRequire.TextColor3 = Color3.new(1, 1, 1)
  378. IcebergRequire.TextSize = 14
  379.  
  380. TornadoButton.Name = "TornadoButton"
  381. TornadoButton.Parent = ToughTPFrame
  382. TornadoButton.BackgroundColor3 = Color3.new(0, 0, 0)
  383. TornadoButton.BackgroundTransparency = 0.5
  384. TornadoButton.Position = UDim2.new(0, 0, 0.375, 0)
  385. TornadoButton.Size = UDim2.new(0, 150, 0, 25)
  386. TornadoButton.Font = Enum.Font.Fantasy
  387. TornadoButton.Text = "Tornado - 50x"
  388. TornadoButton.TextColor3 = Color3.new(1, 1, 1)
  389. TornadoButton.TextSize = 14
  390. TornadoButton.TextWrapped = true
  391.  
  392. TornadoRequire.Name = "TornadoRequire"
  393. TornadoRequire.Parent = ToughTPFrame
  394. TornadoRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  395. TornadoRequire.BackgroundTransparency = 1
  396. TornadoRequire.BorderSizePixel = 0
  397. TornadoRequire.Position = UDim2.new(0, 0, 0.437000006, 0)
  398. TornadoRequire.Size = UDim2.new(0, 150, 0, 25)
  399. TornadoRequire.Font = Enum.Font.Fantasy
  400. TornadoRequire.Text = "Need 1M Body Toughness"
  401. TornadoRequire.TextColor3 = Color3.new(1, 1, 1)
  402. TornadoRequire.TextSize = 14
  403.  
  404. VolcanoButton.Name = "VolcanoButton"
  405. VolcanoButton.Parent = ToughTPFrame
  406. VolcanoButton.BackgroundColor3 = Color3.new(0, 0, 0)
  407. VolcanoButton.BackgroundTransparency = 0.5
  408. VolcanoButton.Position = UDim2.new(0, 0, 0.5, 0)
  409. VolcanoButton.Size = UDim2.new(0, 150, 0, 25)
  410. VolcanoButton.Font = Enum.Font.Fantasy
  411. VolcanoButton.Text = "Volcano - 100x"
  412. VolcanoButton.TextColor3 = Color3.new(1, 1, 1)
  413. VolcanoButton.TextSize = 14
  414. VolcanoButton.TextWrapped = true
  415.  
  416. VolcanoRequire.Name = "VolcanoRequire"
  417. VolcanoRequire.Parent = ToughTPFrame
  418. VolcanoRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  419. VolcanoRequire.BackgroundTransparency = 1
  420. VolcanoRequire.BorderSizePixel = 0
  421. VolcanoRequire.Position = UDim2.new(0, 0, 0.561999977, 0)
  422. VolcanoRequire.Size = UDim2.new(0, 150, 0, 25)
  423. VolcanoRequire.Font = Enum.Font.Fantasy
  424. VolcanoRequire.Text = "Need 10M Body Toughness"
  425. VolcanoRequire.TextColor3 = Color3.new(1, 1, 1)
  426. VolcanoRequire.TextSize = 14
  427.  
  428. HellFirePitButton.Name = "HellFirePitButton"
  429. HellFirePitButton.Parent = ToughTPFrame
  430. HellFirePitButton.BackgroundColor3 = Color3.new(0, 0, 0)
  431. HellFirePitButton.BackgroundTransparency = 0.5
  432. HellFirePitButton.Position = UDim2.new(0, 0, 0.625, 0)
  433. HellFirePitButton.Size = UDim2.new(0, 150, 0, 25)
  434. HellFirePitButton.Font = Enum.Font.Fantasy
  435. HellFirePitButton.Text = "Hell Fire Pit - 2k x"
  436. HellFirePitButton.TextColor3 = Color3.new(1, 1, 1)
  437. HellFirePitButton.TextSize = 14
  438. HellFirePitButton.TextWrapped = true
  439.  
  440. HellFirePitRequire.Name = "HellFirePitRequire"
  441. HellFirePitRequire.Parent = ToughTPFrame
  442. HellFirePitRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  443. HellFirePitRequire.BackgroundTransparency = 1
  444. HellFirePitRequire.BorderSizePixel = 0
  445. HellFirePitRequire.Position = UDim2.new(0, 0, 0.686999977, 0)
  446. HellFirePitRequire.Size = UDim2.new(0, 150, 0, 25)
  447. HellFirePitRequire.Font = Enum.Font.Fantasy
  448. HellFirePitRequire.Text = "Need 1B Body Toughness"
  449. HellFirePitRequire.TextColor3 = Color3.new(1, 1, 1)
  450. HellFirePitRequire.TextSize = 14
  451.  
  452. AcidPool1Button.Name = "AcidPool1Button"
  453. AcidPool1Button.Parent = ToughTPFrame
  454. AcidPool1Button.BackgroundColor3 = Color3.new(0, 0, 0)
  455. AcidPool1Button.BackgroundTransparency = 0.5
  456. AcidPool1Button.Position = UDim2.new(0, 0, 0.75, 0)
  457. AcidPool1Button.Size = UDim2.new(0, 150, 0, 25)
  458. AcidPool1Button.Font = Enum.Font.Fantasy
  459. AcidPool1Button.Text = "Acid Pool 1 - 40k x"
  460. AcidPool1Button.TextColor3 = Color3.new(1, 1, 1)
  461. AcidPool1Button.TextSize = 14
  462. AcidPool1Button.TextWrapped = true
  463.  
  464. AcidPool1Require.Name = "AcidPool1Require"
  465. AcidPool1Require.Parent = ToughTPFrame
  466. AcidPool1Require.BackgroundColor3 = Color3.new(0, 0, 0)
  467. AcidPool1Require.BackgroundTransparency = 1
  468. AcidPool1Require.BorderSizePixel = 0
  469. AcidPool1Require.Position = UDim2.new(0, 0, 0.811999977, 0)
  470. AcidPool1Require.Size = UDim2.new(0, 150, 0, 25)
  471. AcidPool1Require.Font = Enum.Font.Fantasy
  472. AcidPool1Require.Text = "Need 100B Body Toughness"
  473. AcidPool1Require.TextColor3 = Color3.new(1, 1, 1)
  474. AcidPool1Require.TextSize = 14
  475.  
  476. AcidPool2Button.Name = "AcidPool2Button"
  477. AcidPool2Button.Parent = ToughTPFrame
  478. AcidPool2Button.BackgroundColor3 = Color3.new(0, 0, 0)
  479. AcidPool2Button.BackgroundTransparency = 0.5
  480. AcidPool2Button.Position = UDim2.new(0, 0, 0.875, 0)
  481. AcidPool2Button.Size = UDim2.new(0, 150, 0, 25)
  482. AcidPool2Button.Font = Enum.Font.Fantasy
  483. AcidPool2Button.Text = "Acid Pool 1 - 40k x"
  484. AcidPool2Button.TextColor3 = Color3.new(1, 1, 1)
  485. AcidPool2Button.TextSize = 14
  486. AcidPool2Button.TextWrapped = true
  487.  
  488. AcidPool2Require.Name = "AcidPool2Require"
  489. AcidPool2Require.Parent = ToughTPFrame
  490. AcidPool2Require.BackgroundColor3 = Color3.new(0, 0, 0)
  491. AcidPool2Require.BackgroundTransparency = 1
  492. AcidPool2Require.BorderSizePixel = 0
  493. AcidPool2Require.Position = UDim2.new(0, 0, 0.936999977, 0)
  494. AcidPool2Require.Size = UDim2.new(0, 150, 0, 25)
  495. AcidPool2Require.Font = Enum.Font.Fantasy
  496. AcidPool2Require.Text = "Need 10T Body Toughness"
  497. AcidPool2Require.TextColor3 = Color3.new(1, 1, 1)
  498. AcidPool2Require.TextSize = 14
  499.  
  500. PsychicTPFrame.Name = "PsychicTPFrame"
  501. PsychicTPFrame.Parent = TPTypeFrame
  502. PsychicTPFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  503. PsychicTPFrame.BackgroundTransparency = 0.5
  504. PsychicTPFrame.BorderSizePixel = 4
  505. PsychicTPFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  506. PsychicTPFrame.Size = UDim2.new(0, 150, 0, 200)
  507. PsychicTPFrame.Visible = false
  508.  
  509. FirstLawnButton.Name = "FirstLawnButton"
  510. FirstLawnButton.Parent = PsychicTPFrame
  511. FirstLawnButton.BackgroundColor3 = Color3.new(0, 0, 0)
  512. FirstLawnButton.BackgroundTransparency = 0.5
  513. FirstLawnButton.Size = UDim2.new(0, 150, 0, 25)
  514. FirstLawnButton.Font = Enum.Font.Fantasy
  515. FirstLawnButton.Text = "First Lawn - 100x"
  516. FirstLawnButton.TextColor3 = Color3.new(1, 1, 1)
  517. FirstLawnButton.TextSize = 14
  518. FirstLawnButton.TextWrapped = true
  519.  
  520. FirstLawnRequire.Name = "FirstLawnRequire"
  521. FirstLawnRequire.Parent = PsychicTPFrame
  522. FirstLawnRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  523. FirstLawnRequire.BackgroundTransparency = 1
  524. FirstLawnRequire.BorderSizePixel = 0
  525. FirstLawnRequire.Position = UDim2.new(0, 0, 0.125, 0)
  526. FirstLawnRequire.Size = UDim2.new(0, 150, 0, 25)
  527. FirstLawnRequire.Font = Enum.Font.Fantasy
  528. FirstLawnRequire.Text = "Need 1M Psychic Power"
  529. FirstLawnRequire.TextColor3 = Color3.new(1, 1, 1)
  530. FirstLawnRequire.TextSize = 14
  531.  
  532. SecondLawnButton.Name = "SecondLawnButton"
  533. SecondLawnButton.Parent = PsychicTPFrame
  534. SecondLawnButton.BackgroundColor3 = Color3.new(0, 0, 0)
  535. SecondLawnButton.BackgroundTransparency = 0.5
  536. SecondLawnButton.Position = UDim2.new(0, 0, 0.25, 0)
  537. SecondLawnButton.Size = UDim2.new(0, 150, 0, 25)
  538. SecondLawnButton.Font = Enum.Font.Fantasy
  539. SecondLawnButton.Text = "Second Lawn - 10k x"
  540. SecondLawnButton.TextColor3 = Color3.new(1, 1, 1)
  541. SecondLawnButton.TextSize = 14
  542. SecondLawnButton.TextWrapped = true
  543.  
  544. SecondLawnRequire.Name = "SecondLawnRequire"
  545. SecondLawnRequire.Parent = PsychicTPFrame
  546. SecondLawnRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  547. SecondLawnRequire.BackgroundTransparency = 1
  548. SecondLawnRequire.BorderSizePixel = 0
  549. SecondLawnRequire.Position = UDim2.new(0, 0, 0.375, 0)
  550. SecondLawnRequire.Size = UDim2.new(0, 150, 0, 25)
  551. SecondLawnRequire.Font = Enum.Font.Fantasy
  552. SecondLawnRequire.Text = "Need 1B Psychic Power"
  553. SecondLawnRequire.TextColor3 = Color3.new(1, 1, 1)
  554. SecondLawnRequire.TextSize = 14
  555.  
  556. BridgeButton.Name = "BridgeButton"
  557. BridgeButton.Parent = PsychicTPFrame
  558. BridgeButton.BackgroundColor3 = Color3.new(0, 0, 0)
  559. BridgeButton.BackgroundTransparency = 0.5
  560. BridgeButton.Position = UDim2.new(0, 0, 0.5, 0)
  561. BridgeButton.Size = UDim2.new(0, 150, 0, 25)
  562. BridgeButton.Font = Enum.Font.Fantasy
  563. BridgeButton.Text = "Bridge - 1m x"
  564. BridgeButton.TextColor3 = Color3.new(1, 1, 1)
  565. BridgeButton.TextSize = 14
  566. BridgeButton.TextWrapped = true
  567.  
  568. BridgeRequire.Name = "BridgeRequire"
  569. BridgeRequire.Parent = PsychicTPFrame
  570. BridgeRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  571. BridgeRequire.BackgroundTransparency = 1
  572. BridgeRequire.BorderSizePixel = 0
  573. BridgeRequire.Position = UDim2.new(0, 0, 0.625, 0)
  574. BridgeRequire.Size = UDim2.new(0, 150, 0, 25)
  575. BridgeRequire.Font = Enum.Font.Fantasy
  576. BridgeRequire.Text = "Need 1T Psychic Power"
  577. BridgeRequire.TextColor3 = Color3.new(1, 1, 1)
  578. BridgeRequire.TextSize = 14
  579.  
  580. WaterfallButton.Name = "WaterfallButton"
  581. WaterfallButton.Parent = PsychicTPFrame
  582. WaterfallButton.BackgroundColor3 = Color3.new(0, 0, 0)
  583. WaterfallButton.BackgroundTransparency = 0.5
  584. WaterfallButton.Position = UDim2.new(0, 0, 0.75, 0)
  585. WaterfallButton.Size = UDim2.new(0, 150, 0, 25)
  586. WaterfallButton.Font = Enum.Font.Fantasy
  587. WaterfallButton.Text = "Waterfall - 100m x"
  588. WaterfallButton.TextColor3 = Color3.new(1, 1, 1)
  589. WaterfallButton.TextSize = 14
  590. WaterfallButton.TextWrapped = true
  591.  
  592. WaterfallRequire.Name = "WaterfallRequire"
  593. WaterfallRequire.Parent = PsychicTPFrame
  594. WaterfallRequire.BackgroundColor3 = Color3.new(0, 0, 0)
  595. WaterfallRequire.BackgroundTransparency = 1
  596. WaterfallRequire.BorderSizePixel = 0
  597. WaterfallRequire.Position = UDim2.new(0, 0, 0.875, 0)
  598. WaterfallRequire.Size = UDim2.new(0, 150, 0, 25)
  599. WaterfallRequire.Font = Enum.Font.Fantasy
  600. WaterfallRequire.Text = "Need 1Qa Psychic Power"
  601. WaterfallRequire.TextColor3 = Color3.new(1, 1, 1)
  602. WaterfallRequire.TextSize = 14
  603.  
  604. OtherTPButton.Name = "OtherTPButton"
  605. OtherTPButton.Parent = TPTypeFrame
  606. OtherTPButton.BackgroundColor3 = Color3.new(0, 0, 0)
  607. OtherTPButton.BackgroundTransparency = 0.5
  608. OtherTPButton.Position = UDim2.new(0, 0, 0.75, 0)
  609. OtherTPButton.Size = UDim2.new(0, 80, 0, 80)
  610. OtherTPButton.Font = Enum.Font.Fantasy
  611. OtherTPButton.Text = "Other Teleports + Options"
  612. OtherTPButton.TextColor3 = Color3.new(1, 1, 1)
  613. OtherTPButton.TextSize = 18
  614. OtherTPButton.TextWrapped = true
  615.  
  616. OtherTPFrame.Name = "OtherTPFrame"
  617. OtherTPFrame.Parent = TPTypeFrame
  618. OtherTPFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  619. OtherTPFrame.BackgroundTransparency = 0.5
  620. OtherTPFrame.BorderSizePixel = 4
  621. OtherTPFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  622. OtherTPFrame.Size = UDim2.new(0, 150, 0, 250)
  623. OtherTPFrame.Visible = false
  624.  
  625. QuesterTPButton.Name = "QuesterTPButton"
  626. QuesterTPButton.Parent = OtherTPFrame
  627. QuesterTPButton.BackgroundColor3 = Color3.new(0, 0, 0)
  628. QuesterTPButton.BackgroundTransparency = 0.5
  629. QuesterTPButton.Size = UDim2.new(0, 150, 0, 25)
  630. QuesterTPButton.Font = Enum.Font.Fantasy
  631. QuesterTPButton.Text = "TP To Quester"
  632. QuesterTPButton.TextColor3 = Color3.new(1, 1, 1)
  633. QuesterTPButton.TextSize = 14
  634. QuesterTPButton.TextWrapped = true
  635.  
  636. SafetyKeyButton.Name = "SafetyKeyButton"
  637. SafetyKeyButton.Parent = OtherTPFrame
  638. SafetyKeyButton.AnchorPoint = Vector2.new(0.5, 0)
  639. SafetyKeyButton.BackgroundColor3 = Color3.new(0, 0, 0)
  640. SafetyKeyButton.BackgroundTransparency = 0.5
  641. SafetyKeyButton.Position = UDim2.new(0.319999993, 0, 0.239999995, 0)
  642. SafetyKeyButton.Size = UDim2.new(0, 80, 0, 30)
  643. SafetyKeyButton.Font = Enum.Font.Fantasy
  644. SafetyKeyButton.Text = "Set Safety Key"
  645. SafetyKeyButton.TextColor3 = Color3.new(1, 1, 1)
  646. SafetyKeyButton.TextSize = 14
  647. SafetyKeyButton.TextWrapped = true
  648.  
  649. SafetyKeyHere.Name = "SafetyKeyHere"
  650. SafetyKeyHere.Parent = OtherTPFrame
  651. SafetyKeyHere.AnchorPoint = Vector2.new(0.5, 0)
  652. SafetyKeyHere.BackgroundColor3 = Color3.new(0, 0, 0)
  653. SafetyKeyHere.BackgroundTransparency = 0.69999998807907
  654. SafetyKeyHere.BorderColor3 = Color3.new(1, 1, 1)
  655. SafetyKeyHere.Position = UDim2.new(0.779999971, 0, 0.239999995, 0)
  656. SafetyKeyHere.Size = UDim2.new(0, 50, 0, 30)
  657. SafetyKeyHere.Font = Enum.Font.Fantasy
  658. SafetyKeyHere.Text = "s"
  659. SafetyKeyHere.TextColor3 = Color3.new(1, 1, 1)
  660. SafetyKeyHere.TextSize = 18
  661.  
  662. SafetyInfo.Name = "SafetyInfo"
  663. SafetyInfo.Parent = OtherTPFrame
  664. SafetyInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  665. SafetyInfo.BackgroundTransparency = 1
  666. SafetyInfo.BorderSizePixel = 0
  667. SafetyInfo.Position = UDim2.new(0, 0, 0.360000014, 0)
  668. SafetyInfo.Selectable = true
  669. SafetyInfo.Size = UDim2.new(0, 150, 0, 50)
  670. SafetyInfo.Font = Enum.Font.Fantasy
  671. SafetyInfo.Text = "The Safety Key TP's you to the safe zone to escape stronger opponents"
  672. SafetyInfo.TextColor3 = Color3.new(1, 1, 1)
  673. SafetyInfo.TextSize = 13
  674. SafetyInfo.TextWrapped = true
  675.  
  676. LowHealthTPButton.Name = "LowHealthTPButton"
  677. LowHealthTPButton.Parent = OtherTPFrame
  678. LowHealthTPButton.BackgroundColor3 = Color3.new(0, 0, 0)
  679. LowHealthTPButton.BackgroundTransparency = 0.5
  680. LowHealthTPButton.Position = UDim2.new(0, 0, 0.560000002, 0)
  681. LowHealthTPButton.Size = UDim2.new(0, 150, 0, 25)
  682. LowHealthTPButton.Font = Enum.Font.Fantasy
  683. LowHealthTPButton.Text = "TP When Low Health"
  684. LowHealthTPButton.TextColor3 = Color3.new(1, 1, 1)
  685. LowHealthTPButton.TextSize = 14
  686. LowHealthTPButton.TextWrapped = true
  687.  
  688. HealthPercentButton.Name = "HealthPercentButton"
  689. HealthPercentButton.Parent = OtherTPFrame
  690. HealthPercentButton.BackgroundColor3 = Color3.new(0, 0, 0)
  691. HealthPercentButton.BackgroundTransparency = 0.5
  692. HealthPercentButton.Position = UDim2.new(0, 0, 0.680000007, 0)
  693. HealthPercentButton.Size = UDim2.new(0, 100, 0, 25)
  694. HealthPercentButton.Font = Enum.Font.Fantasy
  695. HealthPercentButton.Text = "Set Health %"
  696. HealthPercentButton.TextColor3 = Color3.new(1, 1, 1)
  697. HealthPercentButton.TextSize = 14
  698. HealthPercentButton.TextWrapped = true
  699.  
  700. HealthHere.Name = "Health%Here"
  701. HealthHere.Parent = OtherTPFrame
  702. HealthHere.AnchorPoint = Vector2.new(1, 0)
  703. HealthHere.BackgroundColor3 = Color3.new(0, 0, 0)
  704. HealthHere.BackgroundTransparency = 0.69999998807907
  705. HealthHere.BorderColor3 = Color3.new(1, 1, 1)
  706. HealthHere.Position = UDim2.new(1, 0, 0.680000007, 0)
  707. HealthHere.Size = UDim2.new(0, 50, 0, 25)
  708. HealthHere.Font = Enum.Font.Fantasy
  709. HealthHere.Text = "25"
  710. HealthHere.TextColor3 = Color3.new(1, 1, 1)
  711. HealthHere.TextSize = 18
  712.  
  713. LowHealthInfo.Name = "LowHealthInfo"
  714. LowHealthInfo.Parent = OtherTPFrame
  715. LowHealthInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  716. LowHealthInfo.BackgroundTransparency = 1
  717. LowHealthInfo.BorderSizePixel = 0
  718. LowHealthInfo.Position = UDim2.new(0, 0, 0.800000012, 0)
  719. LowHealthInfo.Selectable = true
  720. LowHealthInfo.Size = UDim2.new(0, 150, 0, 50)
  721. LowHealthInfo.Font = Enum.Font.Fantasy
  722. LowHealthInfo.Text = "Low Health TP takes you to the safezone if your health goes below the value set"
  723. LowHealthInfo.TextColor3 = Color3.new(1, 1, 1)
  724. LowHealthInfo.TextSize = 13
  725. LowHealthInfo.TextWrapped = true
  726.  
  727. TPQuesterButton.Name = "TPQuesterButton"
  728. TPQuesterButton.Parent = OtherTPFrame
  729. TPQuesterButton.BackgroundColor3 = Color3.new(0, 0, 0)
  730. TPQuesterButton.BackgroundTransparency = 0.5
  731. TPQuesterButton.Position = UDim2.new(0, 0, 0.119999997, 0)
  732. TPQuesterButton.Size = UDim2.new(0, 150, 0, 25)
  733. TPQuesterButton.Font = Enum.Font.Fantasy
  734. TPQuesterButton.Text = "TP Quester To You"
  735. TPQuesterButton.TextColor3 = Color3.new(1, 1, 1)
  736. TPQuesterButton.TextSize = 14
  737. TPQuesterButton.TextWrapped = true
  738.  
  739. AutoFarmFrame.Name = "AutoFarmFrame"
  740. AutoFarmFrame.Parent = MainFrame
  741. AutoFarmFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  742. AutoFarmFrame.BackgroundTransparency = 0.5
  743. AutoFarmFrame.BorderSizePixel = 4
  744. AutoFarmFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  745. AutoFarmFrame.Size = UDim2.new(0, 200, 0, 320)
  746. AutoFarmFrame.Visible = false
  747.  
  748. AutoFist.Name = "AutoFist"
  749. AutoFist.Parent = AutoFarmFrame
  750. AutoFist.BackgroundColor3 = Color3.new(0, 0, 0)
  751. AutoFist.BackgroundTransparency = 0.5
  752. AutoFist.Size = UDim2.new(0, 200, 0, 60)
  753. AutoFist.Font = Enum.Font.Fantasy
  754. AutoFist.Text = "Auto Train Fist: Off"
  755. AutoFist.TextColor3 = Color3.new(1, 1, 1)
  756. AutoFist.TextSize = 18
  757. AutoFist.TextWrapped = true
  758.  
  759. AutoTough.Name = "AutoTough"
  760. AutoTough.Parent = AutoFarmFrame
  761. AutoTough.BackgroundColor3 = Color3.new(0, 0, 0)
  762. AutoTough.BackgroundTransparency = 0.5
  763. AutoTough.Position = UDim2.new(0, 0, 0.200000003, 0)
  764. AutoTough.Size = UDim2.new(0, 200, 0, 60)
  765. AutoTough.Font = Enum.Font.Fantasy
  766. AutoTough.Text = "Auto Train Body: Off"
  767. AutoTough.TextColor3 = Color3.new(1, 1, 1)
  768. AutoTough.TextSize = 18
  769. AutoTough.TextWrapped = true
  770.  
  771. AutoSpeed.Name = "AutoSpeed"
  772. AutoSpeed.Parent = AutoFarmFrame
  773. AutoSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  774. AutoSpeed.BackgroundTransparency = 0.5
  775. AutoSpeed.Position = UDim2.new(0, 0, 0.400000006, 0)
  776. AutoSpeed.Size = UDim2.new(0, 200, 0, 60)
  777. AutoSpeed.Font = Enum.Font.Fantasy
  778. AutoSpeed.Text = "Auto Train Speed: Off"
  779. AutoSpeed.TextColor3 = Color3.new(1, 1, 1)
  780. AutoSpeed.TextSize = 18
  781. AutoSpeed.TextWrapped = true
  782.  
  783. AutoJump.Name = "AutoJump"
  784. AutoJump.Parent = AutoFarmFrame
  785. AutoJump.BackgroundColor3 = Color3.new(0, 0, 0)
  786. AutoJump.BackgroundTransparency = 0.5
  787. AutoJump.Position = UDim2.new(0, 0, 0.600000024, 0)
  788. AutoJump.Size = UDim2.new(0, 200, 0, 60)
  789. AutoJump.Font = Enum.Font.Fantasy
  790. AutoJump.Text = "Auto Train Jump: Off"
  791. AutoJump.TextColor3 = Color3.new(1, 1, 1)
  792. AutoJump.TextSize = 18
  793. AutoJump.TextWrapped = true
  794.  
  795. AutoPsychic.Name = "AutoPsychic"
  796. AutoPsychic.Parent = AutoFarmFrame
  797. AutoPsychic.BackgroundColor3 = Color3.new(0, 0, 0)
  798. AutoPsychic.BackgroundTransparency = 0.5
  799. AutoPsychic.Position = UDim2.new(0, 0, 0.800000012, 0)
  800. AutoPsychic.Size = UDim2.new(0, 200, 0, 60)
  801. AutoPsychic.Font = Enum.Font.Fantasy
  802. AutoPsychic.Text = "Auto Train Psychic: Off"
  803. AutoPsychic.TextColor3 = Color3.new(1, 1, 1)
  804. AutoPsychic.TextSize = 18
  805. AutoPsychic.TextWrapped = true
  806.  
  807. FeaturesFrame.Name = "FeaturesFrame"
  808. FeaturesFrame.Parent = MainFrame
  809. FeaturesFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  810. FeaturesFrame.BackgroundTransparency = 0.5
  811. FeaturesFrame.BorderSizePixel = 4
  812. FeaturesFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  813. FeaturesFrame.Size = UDim2.new(0, 200, 0, 320)
  814. FeaturesFrame.Visible = false
  815.  
  816. ESPButton.Name = "ESPButton"
  817. ESPButton.Parent = FeaturesFrame
  818. ESPButton.AnchorPoint = Vector2.new(0.5, 0)
  819. ESPButton.BackgroundColor3 = Color3.new(0, 0, 0)
  820. ESPButton.BackgroundTransparency = 0.5
  821. ESPButton.Position = UDim2.new(0.25, 0, 0.0500000007, 0)
  822. ESPButton.Size = UDim2.new(0, 90, 0, 45)
  823. ESPButton.Font = Enum.Font.Fantasy
  824. ESPButton.Text = "Player ESP Off"
  825. ESPButton.TextColor3 = Color3.new(1, 1, 1)
  826. ESPButton.TextSize = 16
  827. ESPButton.TextWrapped = true
  828.  
  829. DeathReturnButton.Name = "DeathReturnButton"
  830. DeathReturnButton.Parent = FeaturesFrame
  831. DeathReturnButton.AnchorPoint = Vector2.new(0.5, 0)
  832. DeathReturnButton.BackgroundColor3 = Color3.new(0, 0, 0)
  833. DeathReturnButton.BackgroundTransparency = 0.5
  834. DeathReturnButton.Position = UDim2.new(0.75, 0, 0.0500000007, 0)
  835. DeathReturnButton.Size = UDim2.new(0, 90, 0, 45)
  836. DeathReturnButton.Font = Enum.Font.Fantasy
  837. DeathReturnButton.Text = "Return On Death: Off"
  838. DeathReturnButton.TextColor3 = Color3.new(1, 1, 1)
  839. DeathReturnButton.TextSize = 16
  840. DeathReturnButton.TextWrapped = true
  841.  
  842. PlayerTPButton.Name = "PlayerTPButton"
  843. PlayerTPButton.Parent = FeaturesFrame
  844. PlayerTPButton.AnchorPoint = Vector2.new(0.5, 0)
  845. PlayerTPButton.BackgroundColor3 = Color3.new(0, 0, 0)
  846. PlayerTPButton.BackgroundTransparency = 0.5
  847. PlayerTPButton.Position = UDim2.new(0.25, 0, 0.370000005, 0)
  848. PlayerTPButton.Size = UDim2.new(0, 90, 0, 30)
  849. PlayerTPButton.Font = Enum.Font.Fantasy
  850. PlayerTPButton.Text = "Player TP"
  851. PlayerTPButton.TextColor3 = Color3.new(1, 1, 1)
  852. PlayerTPButton.TextSize = 16
  853. PlayerTPButton.TextWrapped = true
  854.  
  855. SkipSathButton.Name = "SkipSathButton"
  856. SkipSathButton.Parent = FeaturesFrame
  857. SkipSathButton.AnchorPoint = Vector2.new(0.5, 0)
  858. SkipSathButton.BackgroundColor3 = Color3.new(0, 0, 0)
  859. SkipSathButton.BackgroundTransparency = 0.5
  860. SkipSathButton.Position = UDim2.new(0.25, 0, 0.219999999, 0)
  861. SkipSathButton.Size = UDim2.new(0, 90, 0, 40)
  862. SkipSathButton.Font = Enum.Font.Fantasy
  863. SkipSathButton.Text = "Skip Sath's Text"
  864. SkipSathButton.TextColor3 = Color3.new(1, 1, 1)
  865. SkipSathButton.TextSize = 16
  866. SkipSathButton.TextWrapped = true
  867.  
  868. PlayerName.Name = "PlayerName"
  869. PlayerName.Parent = FeaturesFrame
  870. PlayerName.AnchorPoint = Vector2.new(0.5, 0)
  871. PlayerName.BackgroundColor3 = Color3.new(0, 0, 0)
  872. PlayerName.BackgroundTransparency = 0.5
  873. PlayerName.Position = UDim2.new(0.75, 0, 0.370000005, 0)
  874. PlayerName.Size = UDim2.new(0, 90, 0, 30)
  875. PlayerName.Font = Enum.Font.Fantasy
  876. PlayerName.Text = "Name Here"
  877. PlayerName.TextColor3 = Color3.new(1, 1, 1)
  878. PlayerName.TextSize = 12
  879.  
  880. Notes.Name = "Notes"
  881. Notes.Parent = FeaturesFrame
  882. Notes.AnchorPoint = Vector2.new(0.5, 0)
  883. Notes.BackgroundColor3 = Color3.new(0, 0, 0)
  884. Notes.BackgroundTransparency = 1
  885. Notes.BorderSizePixel = 0
  886. Notes.Position = UDim2.new(0.5, 0, 0.579999983, 0)
  887. Notes.Size = UDim2.new(0, 50, 0, 25)
  888. Notes.Font = Enum.Font.Fantasy
  889. Notes.Text = "Notes"
  890. Notes.TextColor3 = Color3.new(1, 1, 1)
  891. Notes.TextSize = 14
  892.  
  893. ToughNote.Name = "ToughNote"
  894. ToughNote.Parent = FeaturesFrame
  895. ToughNote.AnchorPoint = Vector2.new(0.5, 0)
  896. ToughNote.BackgroundColor3 = Color3.new(0, 0, 0)
  897. ToughNote.BackgroundTransparency = 1
  898. ToughNote.BorderSizePixel = 0
  899. ToughNote.Position = UDim2.new(0.5, 0, 0.649999976, 0)
  900. ToughNote.Size = UDim2.new(0, 200, 0, 60)
  901. ToughNote.Font = Enum.Font.Fantasy
  902. ToughNote.Text = "Requirements to survive toughness areas without taking damage are 4x the requirements to use them"
  903. ToughNote.TextColor3 = Color3.new(1, 1, 1)
  904. ToughNote.TextSize = 14
  905. ToughNote.TextWrapped = true
  906.  
  907. SpeedJumpNote.Name = "SpeedJumpNote"
  908. SpeedJumpNote.Parent = FeaturesFrame
  909. SpeedJumpNote.AnchorPoint = Vector2.new(0.5, 0)
  910. SpeedJumpNote.BackgroundColor3 = Color3.new(0, 0, 0)
  911. SpeedJumpNote.BackgroundTransparency = 1
  912. SpeedJumpNote.BorderSizePixel = 0
  913. SpeedJumpNote.Position = UDim2.new(0.5, 0, 0.829999983, 0)
  914. SpeedJumpNote.Size = UDim2.new(0, 200, 0, 50)
  915. SpeedJumpNote.Font = Enum.Font.Fantasy
  916. SpeedJumpNote.Text = "Speed and Jump farming can be made quicker by equipping weights by pressing 4"
  917. SpeedJumpNote.TextColor3 = Color3.new(1, 1, 1)
  918. SpeedJumpNote.TextSize = 14
  919. SpeedJumpNote.TextWrapped = true
  920.  
  921. AntiAFKButton.Name = "AntiAFKButton"
  922. AntiAFKButton.Parent = FeaturesFrame
  923. AntiAFKButton.AnchorPoint = Vector2.new(0.5, 0)
  924. AntiAFKButton.BackgroundColor3 = Color3.new(0, 0, 0)
  925. AntiAFKButton.BackgroundTransparency = 0.5
  926. AntiAFKButton.Position = UDim2.new(0.75, 0, 0.219999999, 0)
  927. AntiAFKButton.Size = UDim2.new(0, 90, 0, 40)
  928. AntiAFKButton.Font = Enum.Font.Fantasy
  929. AntiAFKButton.Text = "Anti-AFK Off"
  930. AntiAFKButton.TextColor3 = Color3.new(1, 1, 1)
  931. AntiAFKButton.TextSize = 16
  932. AntiAFKButton.TextWrapped = true
  933.  
  934. TPToolButton.Name = "TPToolButton"
  935. TPToolButton.Parent = FeaturesFrame
  936. TPToolButton.AnchorPoint = Vector2.new(0.5, 0)
  937. TPToolButton.BackgroundColor3 = Color3.new(0, 0, 0)
  938. TPToolButton.BackgroundTransparency = 0.5
  939. TPToolButton.Position = UDim2.new(0.75, 0, 0.49000001, 0)
  940. TPToolButton.Size = UDim2.new(0, 90, 0, 30)
  941. TPToolButton.Font = Enum.Font.Fantasy
  942. TPToolButton.Text = "TP Tool"
  943. TPToolButton.TextColor3 = Color3.new(1, 1, 1)
  944. TPToolButton.TextSize = 16
  945. TPToolButton.TextWrapped = true
  946.  
  947. NoClipButton.Name = "NoClipButton"
  948. NoClipButton.Parent = FeaturesFrame
  949. NoClipButton.AnchorPoint = Vector2.new(0.5, 0)
  950. NoClipButton.BackgroundColor3 = Color3.new(0, 0, 0)
  951. NoClipButton.BackgroundTransparency = 0.5
  952. NoClipButton.Position = UDim2.new(0.25, 0, 0.49000001, 0)
  953. NoClipButton.Size = UDim2.new(0, 90, 0, 30)
  954. NoClipButton.Font = Enum.Font.Fantasy
  955. NoClipButton.Text = "NoClip Off"
  956. NoClipButton.TextColor3 = Color3.new(1, 1, 1)
  957. NoClipButton.TextSize = 16
  958. NoClipButton.TextWrapped = true
  959.  
  960. StatsFrame.Name = "StatsFrame"
  961. StatsFrame.Parent = MainFrame
  962. StatsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  963. StatsFrame.BackgroundTransparency = 0.5
  964. StatsFrame.BorderSizePixel = 4
  965. StatsFrame.Position = UDim2.new(1.10000002, 0, 0, 0)
  966. StatsFrame.Size = UDim2.new(0, 200, 0, 150)
  967. StatsFrame.Visible = false
  968.  
  969. FistStrength.Name = "FistStrength"
  970. FistStrength.Parent = StatsFrame
  971. FistStrength.BackgroundColor3 = Color3.new(0, 0, 0)
  972. FistStrength.BackgroundTransparency = 1
  973. FistStrength.BorderSizePixel = 0
  974. FistStrength.Position = UDim2.new(0.0500000007, 0, 0, 0)
  975. FistStrength.Size = UDim2.new(0, 190, 0, 30)
  976. FistStrength.Font = Enum.Font.Fantasy
  977. FistStrength.Text = "Fist Strength:"
  978. FistStrength.TextColor3 = Color3.new(1, 1, 1)
  979. FistStrength.TextSize = 14
  980. FistStrength.TextWrapped = true
  981. FistStrength.TextXAlignment = Enum.TextXAlignment.Left
  982.  
  983. BodyToughness.Name = "BodyToughness"
  984. BodyToughness.Parent = StatsFrame
  985. BodyToughness.BackgroundColor3 = Color3.new(0, 0, 0)
  986. BodyToughness.BackgroundTransparency = 1
  987. BodyToughness.BorderSizePixel = 0
  988. BodyToughness.Position = UDim2.new(0.0500000007, 0, 0.200000003, 0)
  989. BodyToughness.Size = UDim2.new(0, 190, 0, 30)
  990. BodyToughness.Font = Enum.Font.Fantasy
  991. BodyToughness.Text = "Body Toughness:"
  992. BodyToughness.TextColor3 = Color3.new(1, 1, 1)
  993. BodyToughness.TextSize = 14
  994. BodyToughness.TextWrapped = true
  995. BodyToughness.TextXAlignment = Enum.TextXAlignment.Left
  996.  
  997. MovementSpeed.Name = "MovementSpeed"
  998. MovementSpeed.Parent = StatsFrame
  999. MovementSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  1000. MovementSpeed.BackgroundTransparency = 1
  1001. MovementSpeed.BorderSizePixel = 0
  1002. MovementSpeed.Position = UDim2.new(0.0500000007, 0, 0.400000006, 0)
  1003. MovementSpeed.Size = UDim2.new(0, 190, 0, 30)
  1004. MovementSpeed.Font = Enum.Font.Fantasy
  1005. MovementSpeed.Text = "Movement Speed:"
  1006. MovementSpeed.TextColor3 = Color3.new(1, 1, 1)
  1007. MovementSpeed.TextSize = 14
  1008. MovementSpeed.TextWrapped = true
  1009. MovementSpeed.TextXAlignment = Enum.TextXAlignment.Left
  1010.  
  1011. JumpForce.Name = "JumpForce"
  1012. JumpForce.Parent = StatsFrame
  1013. JumpForce.BackgroundColor3 = Color3.new(0, 0, 0)
  1014. JumpForce.BackgroundTransparency = 1
  1015. JumpForce.BorderSizePixel = 0
  1016. JumpForce.Position = UDim2.new(0.0500000007, 0, 0.600000024, 0)
  1017. JumpForce.Size = UDim2.new(0, 190, 0, 30)
  1018. JumpForce.Font = Enum.Font.Fantasy
  1019. JumpForce.Text = "Jump Force:"
  1020. JumpForce.TextColor3 = Color3.new(1, 1, 1)
  1021. JumpForce.TextSize = 14
  1022. JumpForce.TextWrapped = true
  1023. JumpForce.TextXAlignment = Enum.TextXAlignment.Left
  1024.  
  1025. PsychicPower.Name = "PsychicPower"
  1026. PsychicPower.Parent = StatsFrame
  1027. PsychicPower.BackgroundColor3 = Color3.new(0, 0, 0)
  1028. PsychicPower.BackgroundTransparency = 1
  1029. PsychicPower.BorderSizePixel = 0
  1030. PsychicPower.Position = UDim2.new(0.0500000007, 0, 0.800000012, 0)
  1031. PsychicPower.Size = UDim2.new(0, 190, 0, 30)
  1032. PsychicPower.Font = Enum.Font.Fantasy
  1033. PsychicPower.Text = "Psychic Power:"
  1034. PsychicPower.TextColor3 = Color3.new(1, 1, 1)
  1035. PsychicPower.TextSize = 14
  1036. PsychicPower.TextWrapped = true
  1037. PsychicPower.TextXAlignment = Enum.TextXAlignment.Left
  1038.  
  1039. MovementAmount.Name = "MovementAmount"
  1040. MovementAmount.Parent = StatsFrame
  1041. MovementAmount.BackgroundColor3 = Color3.new(0, 0, 0)
  1042. MovementAmount.BackgroundTransparency = 1
  1043. MovementAmount.BorderSizePixel = 0
  1044. MovementAmount.Position = UDim2.new(0, 0, 0.400000006, 0)
  1045. MovementAmount.Size = UDim2.new(0, 190, 0, 30)
  1046. MovementAmount.Font = Enum.Font.Fantasy
  1047. MovementAmount.Text = "Amount"
  1048. MovementAmount.TextColor3 = Color3.new(1, 1, 1)
  1049. MovementAmount.TextSize = 14
  1050. MovementAmount.TextWrapped = true
  1051. MovementAmount.TextXAlignment = Enum.TextXAlignment.Right
  1052.  
  1053. FistAmount.Name = "FistAmount"
  1054. FistAmount.Parent = StatsFrame
  1055. FistAmount.BackgroundColor3 = Color3.new(0, 0, 0)
  1056. FistAmount.BackgroundTransparency = 1
  1057. FistAmount.BorderSizePixel = 0
  1058. FistAmount.Size = UDim2.new(0, 190, 0, 30)
  1059. FistAmount.Font = Enum.Font.Fantasy
  1060. FistAmount.Text = "Amount"
  1061. FistAmount.TextColor3 = Color3.new(1, 1, 1)
  1062. FistAmount.TextSize = 14
  1063. FistAmount.TextWrapped = true
  1064. FistAmount.TextXAlignment = Enum.TextXAlignment.Right
  1065.  
  1066. BodyAmount.Name = "BodyAmount"
  1067. BodyAmount.Parent = StatsFrame
  1068. BodyAmount.BackgroundColor3 = Color3.new(0, 0, 0)
  1069. BodyAmount.BackgroundTransparency = 1
  1070. BodyAmount.BorderSizePixel = 0
  1071. BodyAmount.Position = UDim2.new(0, 0, 0.200000003, 0)
  1072. BodyAmount.Size = UDim2.new(0, 190, 0, 30)
  1073. BodyAmount.Font = Enum.Font.Fantasy
  1074. BodyAmount.Text = "Amount"
  1075. BodyAmount.TextColor3 = Color3.new(1, 1, 1)
  1076. BodyAmount.TextSize = 14
  1077. BodyAmount.TextWrapped = true
  1078. BodyAmount.TextXAlignment = Enum.TextXAlignment.Right
  1079.  
  1080. JumpAmount.Name = "JumpAmount"
  1081. JumpAmount.Parent = StatsFrame
  1082. JumpAmount.BackgroundColor3 = Color3.new(0, 0, 0)
  1083. JumpAmount.BackgroundTransparency = 1
  1084. JumpAmount.BorderSizePixel = 0
  1085. JumpAmount.Position = UDim2.new(0, 0, 0.600000024, 0)
  1086. JumpAmount.Size = UDim2.new(0, 190, 0, 30)
  1087. JumpAmount.Font = Enum.Font.Fantasy
  1088. JumpAmount.Text = "Amount"
  1089. JumpAmount.TextColor3 = Color3.new(1, 1, 1)
  1090. JumpAmount.TextSize = 14
  1091. JumpAmount.TextWrapped = true
  1092. JumpAmount.TextXAlignment = Enum.TextXAlignment.Right
  1093.  
  1094. PsychicAmount.Name = "PsychicAmount"
  1095. PsychicAmount.Parent = StatsFrame
  1096. PsychicAmount.BackgroundColor3 = Color3.new(0, 0, 0)
  1097. PsychicAmount.BackgroundTransparency = 1
  1098. PsychicAmount.BorderSizePixel = 0
  1099. PsychicAmount.Position = UDim2.new(0, 0, 0.800000012, 0)
  1100. PsychicAmount.Size = UDim2.new(0, 190, 0, 30)
  1101. PsychicAmount.Font = Enum.Font.Fantasy
  1102. PsychicAmount.Text = "Amount"
  1103. PsychicAmount.TextColor3 = Color3.new(1, 1, 1)
  1104. PsychicAmount.TextSize = 14
  1105. PsychicAmount.TextWrapped = true
  1106. PsychicAmount.TextXAlignment = Enum.TextXAlignment.Right
  1107.  
  1108. ExtraButton.Name = "ExtraButton"
  1109. ExtraButton.Parent = MainFrame
  1110. ExtraButton.BackgroundColor3 = Color3.new(0, 0, 0)
  1111. ExtraButton.BackgroundTransparency = 0.5
  1112. ExtraButton.Position = UDim2.new(0, 0, 0.5, 0)
  1113. ExtraButton.Size = UDim2.new(0, 80, 0, 80)
  1114. ExtraButton.Font = Enum.Font.Fantasy
  1115. ExtraButton.Text = "Extra Features"
  1116. ExtraButton.TextColor3 = Color3.new(1, 1, 1)
  1117. ExtraButton.TextSize = 20
  1118. ExtraButton.TextWrapped = true
  1119.  
  1120. StatsButton.Name = "StatsButton"
  1121. StatsButton.Parent = MainFrame
  1122. StatsButton.BackgroundColor3 = Color3.new(0, 0, 0)
  1123. StatsButton.BackgroundTransparency = 0.5
  1124. StatsButton.Position = UDim2.new(0, 0, 0.75, 0)
  1125. StatsButton.Size = UDim2.new(0, 80, 0, 80)
  1126. StatsButton.Font = Enum.Font.Fantasy
  1127. StatsButton.Text = "Your Stats"
  1128. StatsButton.TextColor3 = Color3.new(1, 1, 1)
  1129. StatsButton.TextSize = 20
  1130. StatsButton.TextWrapped = true
  1131.  
  1132. -- Scripts
  1133.  
  1134. -- Tab Opening
  1135.  
  1136. local Tabs = {
  1137. [TeleportsButton] = TPTypeFrame;
  1138. [AutoButton] = AutoFarmFrame;
  1139. [ExtraButton] = FeaturesFrame;
  1140. [StatsButton] = StatsFrame;
  1141. }
  1142. for button,frame in pairs(Tabs) do
  1143. button.MouseButton1Click:connect(function()
  1144. if frame.Visible then
  1145. frame.Visible = false
  1146. return
  1147. end
  1148. for k,v in pairs(Tabs) do
  1149. v.Visible = v == frame
  1150. end
  1151. end)
  1152. end
  1153.  
  1154. local TeleTabs = {
  1155. [FistButton] = FistTPFrame;
  1156. [BodyButton] = ToughTPFrame;
  1157. [PsychicButton] = PsychicTPFrame;
  1158. [OtherTPButton] = OtherTPFrame;
  1159. }
  1160. for button,frame in pairs(TeleTabs) do
  1161. button.MouseButton1Click:connect(function()
  1162. if frame.Visible then
  1163. frame.Visible = false
  1164. return
  1165. end
  1166. for k,v in pairs(TeleTabs) do
  1167. v.Visible = v == frame
  1168. end
  1169. end)
  1170. end
  1171.  
  1172. -- Teleports
  1173.  
  1174. QuesterTPButton.MouseButton1Click:connect(function()
  1175. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1176. end)
  1177.  
  1178. RockButton.MouseButton1Click:connect(function()
  1179. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(409, 271, 978)
  1180. end)
  1181.  
  1182. BlueStarButton.MouseButton1Click:connect(function()
  1183. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1176, 4789, -2293)
  1184. end)
  1185.  
  1186. RedStarButton.MouseButton1Click:connect(function()
  1187. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-369, 15735, -9)
  1188. end)
  1189.  
  1190. GreenStarButton.MouseButton1Click:connect(function()
  1191. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1381, 9274, 1647)
  1192. end)
  1193.  
  1194. CrystalButton.MouseButton1Click:connect(function()
  1195. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2279, 1944, 1053)
  1196. end)
  1197.  
  1198. IceBathButton.MouseButton1Click:connect(function()
  1199. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(365, 249, -445)
  1200. end)
  1201.  
  1202. LavaBathButton.MouseButton1Click:connect(function()
  1203. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(349, 263, -490)
  1204. end)
  1205.  
  1206. IcebergButton.MouseButton1Click:connect(function()
  1207. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1640, 258, 2244)
  1208. end)
  1209.  
  1210. TornadoButton.MouseButton1Click:connect(function()
  1211. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2307, 976, 1068)
  1212. end)
  1213.  
  1214. VolcanoButton.MouseButton1Click:connect(function()
  1215. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2024, 714, -1860)
  1216. end)
  1217.  
  1218. HellFirePitButton.MouseButton1Click:connect(function()
  1219. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-254, 286, 980)
  1220. end)
  1221.  
  1222. AcidPool1Button.MouseButton1Click:connect(function()
  1223. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-271, 279, 991)
  1224. end)
  1225.  
  1226. AcidPool2Button.MouseButton1Click:connect(function()
  1227. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-279, 279, 1007)
  1228. end)
  1229.  
  1230. FirstLawnButton.MouseButton1Click:connect(function()
  1231. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2527, 5486, -532)
  1232. end)
  1233.  
  1234. SecondLawnButton.MouseButton1Click:connect(function()
  1235. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2560, 5500, -439)
  1236. end)
  1237.  
  1238. BridgeButton.MouseButton1Click:connect(function()
  1239. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2582, 5516, -504)
  1240. end)
  1241.  
  1242. WaterfallButton.MouseButton1Click:connect(function()
  1243. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2544, 5412, -495)
  1244. end)
  1245.  
  1246. -- Safety TP
  1247.  
  1248. safetybutton = "e"
  1249.  
  1250. SafetyKeyButton.MouseButton1Click:connect(function()
  1251. safetybutton = SafetyKeyHere.Text
  1252. end)
  1253.  
  1254. local mouse = game.Players.LocalPlayer:GetMouse()
  1255.  
  1256. mouse.KeyDown:connect(function(button)
  1257. if button == tostring(safetybutton) then
  1258. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1259. end
  1260. end)
  1261.  
  1262. -- Low Health Safe TP
  1263.  
  1264. lowhealthtpon = false
  1265.  
  1266. healthpercent = 25
  1267.  
  1268. HealthPercentButton.MouseButton1Click:Connect(function()
  1269. healthpercent = HealthHere.Text
  1270. end)
  1271.  
  1272. LowHealthTPButton.MouseButton1Click:connect(function()
  1273. lowhealthtpon = not lowhealthtpon
  1274. if lowhealthtpon then
  1275. LowHealthTPButton.Text = "Low Health TP On"
  1276. else
  1277. LowHealthTPButton.Text = "Low Health TP Off"
  1278. end
  1279. end)
  1280.  
  1281. spawn(function()
  1282. while true do
  1283. if lowhealthtpon then
  1284. while lowhealthtpon do
  1285. local FindHum = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  1286. local currenthealth = tonumber(string.format("%.0f", FindHum.Health))
  1287. local minhealth = tonumber(string.format("%.0f", FindHum.MaxHealth))*tonumber(healthpercent)/100
  1288. -- print("Current Health: " ..tostring(currenthealth).. ". Min Health: " ..tostring(minhealth))
  1289. if currenthealth <= minhealth then
  1290. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1291. end
  1292. wait(0.2)
  1293. end
  1294. end
  1295. wait(0.5)
  1296. end
  1297. end)
  1298.  
  1299. -- TP Quester To You
  1300.  
  1301. questertping = false
  1302.  
  1303. TPQuesterButton.MouseButton1Click:connect(function()
  1304. workspace.Main.QuestNPC.Sathopian:MoveTo((game.Players.LocalPlayer.Character.Head.Position) + Vector3.new(5, -6, 5))
  1305. workspace.Main.QuestNPC.Sathopian.HumanoidRootPart.Anchored = true
  1306. end)
  1307.  
  1308. -- Rounding and Letter Conversion
  1309.  
  1310. function round(num, numDecimalPlaces)
  1311. local mult = 10^(numDecimalPlaces or 0)
  1312. return math.floor(num * mult + 0.5) / mult
  1313. end
  1314.  
  1315. function converttoletter(num)
  1316. if num / 1e21 >=1 then
  1317. newnum = num / 1e21
  1318. return round(newnum, 4).. " Sx"
  1319. elseif num / 1e18 >=1 then
  1320. newnum = num / 1e18
  1321. return round(newnum, 4).. " Qi"
  1322. elseif num / 1e15 >=1 then
  1323. newnum = num / 1e15
  1324. return round(newnum, 4).. " Qa"
  1325. elseif num / 1e12 >=1 then
  1326. newnum = num / 1e12
  1327. return round(newnum, 4).. " T"
  1328. elseif num / 1e09 >=1 then
  1329. newnum = num / 1e09
  1330. return round(newnum, 4).. " B"
  1331. elseif num / 1e06 >=1 then
  1332. newnum = num / 1e06
  1333. return round(newnum, 4).. " M"
  1334. elseif num / 1e03 >=1 then
  1335. newnum = num / 1e03
  1336. return round(newnum, 4).. " K"
  1337. else return num
  1338. end
  1339. end
  1340.  
  1341. -- ESP
  1342.  
  1343. ESPEnabled = false
  1344. ESPLength = 20000
  1345.  
  1346. local Plrs = game:GetService("Players")
  1347. local MyPlr = Plrs.LocalPlayer
  1348. local MyChar = MyPlr.Character
  1349. local CoreGui = game:GetService("CoreGui")
  1350. local Run = game:GetService("RunService")
  1351.  
  1352. CharAddedEvent = { }
  1353.  
  1354. Plrs.PlayerAdded:connect(function(plr)
  1355. if CharAddedEvent[plr.Name] == nil then
  1356. CharAddedEvent[plr.Name] = plr.CharacterAdded:connect(function(char)
  1357. if ESPEnabled then
  1358. RemoveESP(plr)
  1359. CreateESP(plr)
  1360. end
  1361. end)
  1362. end
  1363. end)
  1364.  
  1365. Plrs.PlayerRemoving:connect(function(plr)
  1366. if CharAddedEvent[plr.Name] ~= nil then
  1367. CharAddedEvent[plr.Name]:Disconnect()
  1368. CharAddedEvent[plr.Name] = nil
  1369. end
  1370. RemoveESP(plr)
  1371. end)
  1372.  
  1373. function CreateESP(plr)
  1374. if plr ~= nil then
  1375. local GetChar = plr.Character
  1376. if not GetChar then return end
  1377. local GetHead do
  1378. repeat wait() until GetChar:FindFirstChild("Head")
  1379. end
  1380. GetHead = GetChar.Head
  1381.  
  1382. local bb = Instance.new("BillboardGui", CoreGui)
  1383. bb.Adornee = GetHead
  1384. bb.ExtentsOffset = Vector3.new(0, 3, 0)
  1385. bb.AlwaysOnTop = true
  1386. bb.Size = UDim2.new(0, 10, 0, 10)
  1387. bb.StudsOffset = Vector3.new(0, 3, 0)
  1388. bb.Name = "ESP_" .. plr.Name
  1389.  
  1390. local frame = Instance.new("Frame", bb)
  1391. frame.ZIndex = 10
  1392. frame.BackgroundTransparency = 1
  1393. frame.Size = UDim2.new(1, 0, 1, 0)
  1394.  
  1395. local TxtName = Instance.new("TextLabel", frame)
  1396. TxtName.Name = "Names"
  1397. TxtName.ZIndex = 10
  1398. TxtName.Text = plr.Name
  1399. TxtName.BackgroundTransparency = 1
  1400. TxtName.Position = UDim2.new(0, 0, 0, -60)
  1401. TxtName.Size = UDim2.new(1, 0, 10, 0)
  1402. TxtName.Font = "Impact"
  1403. TxtName.TextColor3 = Color3.new(0, 0, 0)
  1404. TxtName.TextSize = 12
  1405. TxtName.TextStrokeTransparency = 0.5
  1406.  
  1407. local TxtDist = Instance.new("TextLabel", frame)
  1408. TxtDist.Name = "Dist"
  1409. TxtDist.ZIndex = 10
  1410. TxtDist.Text = ""
  1411. TxtDist.BackgroundTransparency = 1
  1412. TxtDist.Position = UDim2.new(0, 0, 0, -45)
  1413. TxtDist.Size = UDim2.new(1, 0, 10, 0)
  1414. TxtDist.Font = "Impact"
  1415. TxtDist.TextColor3 = Color3.new(0, 0, 0)
  1416. TxtDist.TextSize = 12
  1417. TxtDist.TextStrokeTransparency = 0.5
  1418.  
  1419. local TxtHealth = Instance.new("TextLabel", frame)
  1420. TxtHealth.Name = "Health"
  1421. TxtHealth.ZIndex = 10
  1422. TxtHealth.Text = ""
  1423. TxtHealth.BackgroundTransparency = 1
  1424. TxtHealth.Position = UDim2.new(0, 0, 0, -30)
  1425. TxtHealth.Size = UDim2.new(1, 0, 10, 0)
  1426. TxtHealth.Font = "Impact"
  1427. TxtHealth.TextColor3 = Color3.new(0, 0, 0)
  1428. TxtHealth.TextSize = 12
  1429. TxtHealth.TextStrokeTransparency = 0.5
  1430.  
  1431. local TxtFist = Instance.new("TextLabel", frame)
  1432. TxtFist.Name = "Fist"
  1433. TxtFist.ZIndex = 10
  1434. TxtFist.Text = ""
  1435. TxtFist.BackgroundTransparency = 1
  1436. TxtFist.Position = UDim2.new(0, 0, 0, -15)
  1437. TxtFist.Size = UDim2.new(1, 0, 10, 0)
  1438. TxtFist.Font = "Impact"
  1439. TxtFist.TextColor3 = Color3.new(0, 0, 0)
  1440. TxtFist.TextSize = 12
  1441. TxtFist.TextStrokeTransparency = 0.5
  1442.  
  1443. local TxtPsychic = Instance.new("TextLabel", frame)
  1444. TxtPsychic.Name = "Psychic"
  1445. TxtPsychic.ZIndex = 10
  1446. TxtPsychic.Text = ""
  1447. TxtPsychic.BackgroundTransparency = 1
  1448. TxtPsychic.Position = UDim2.new(0, 0, 0, 0)
  1449. TxtPsychic.Size = UDim2.new(1, 0, 10, 0)
  1450. TxtPsychic.Font = "Impact"
  1451. TxtPsychic.TextColor3 = Color3.new(0, 0, 0)
  1452. TxtPsychic.TextSize = 12
  1453. TxtPsychic.TextStrokeTransparency = 0.5
  1454. end
  1455. end
  1456.  
  1457. function UpdateESP(plr)
  1458. local Find = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  1459. if Find then
  1460. local plrStatus = game.Players[plr.Name].leaderstats.Status
  1461. if plrStatus.Value == "Criminal" then
  1462. Find.Frame.Names.Text = plr.Name .. " - Criminal"
  1463. Find.Frame.Names.TextColor3 = Color3.new(1, 0.1, 1)
  1464. elseif plrStatus.Value == "Lawbreaker" then
  1465. Find.Frame.Names.Text = plr.Name .. " - Lawbreaker"
  1466. Find.Frame.Names.TextColor3 = Color3.new(1, 0.1, 0.1)
  1467. elseif plrStatus.Value == "Guardian" then
  1468. Find.Frame.Names.Text = plr.Name .. " - Guardian"
  1469. Find.Frame.Names.TextColor3 = Color3.new(0.1, 0.8, 1)
  1470. elseif plrStatus.Value == "Protector" then
  1471. Find.Frame.Names.Text = plr.Name .. " - Protector"
  1472. Find.Frame.Names.TextColor3 = Color3.new(0.1, 0.1, 1)
  1473. elseif plrStatus.Value == "Supervillain" then
  1474. Find.Frame.Names.Text = plr.Name .. " - SuperVillain"
  1475. Find.Frame.Names.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  1476. elseif plrStatus.Value == "Superhero" then
  1477. Find.Frame.Names.Text = plr.Name .. " - SuperHero"
  1478. Find.Frame.Names.TextColor3 = Color3.new(0.8, 0.8, 0)
  1479. else
  1480. Find.Frame.Names.Text = plr.Name .. " - Innocence"
  1481. Find.Frame.Names.TextColor3 = Color3.new(1, 1, 1)
  1482. end
  1483. Find.Frame.Dist.TextColor3 = Color3.new(1, 1, 1)
  1484. Find.Frame.Health.TextColor3 = Color3.new(1, 1, 1)
  1485. Find.Frame.Fist.TextColor3 = Color3.new(1, 1, 1)
  1486. Find.Frame.Psychic.TextColor3 = Color3.new(1, 1, 1)
  1487. local GetChar = plr.Character
  1488. if MyChar and GetChar then
  1489. local Find2 = MyChar:FindFirstChild("HumanoidRootPart")
  1490. local Find3 = GetChar:FindFirstChild("HumanoidRootPart")
  1491. local Find4 = GetChar:FindFirstChildOfClass("Humanoid")
  1492. if Find2 and Find3 then
  1493. local pos = Find3.Position
  1494. local Dist = (Find2.Position - pos).magnitude
  1495. if Dist > ESPLength then
  1496. Find.Frame.Names.Visible = false
  1497. Find.Frame.Dist.Visible = false
  1498. Find.Frame.Health.Visible = false
  1499. Find.Frame.Fist.Visible = false
  1500. Find.Frame.Psychic.Visible = false
  1501. return
  1502. else
  1503. Find.Frame.Names.Visible = true
  1504. Find.Frame.Dist.Visible = true
  1505. Find.Frame.Health.Visible = true
  1506. Find.Frame.Fist.Visible = true
  1507. Find.Frame.Psychic.Visible = true
  1508. end
  1509. Find.Frame.Dist.Text = "Distance: " .. string.format("%.0f", Dist)
  1510. --Find.Frame.Pos.Text = "(X: " .. string.format("%.0f", pos.X) .. ", Y: " .. string.format("%.0f", pos.Y) .. ", Z: " .. string.format("%.0f", pos.Z) .. ")"
  1511. if Find4 then
  1512. Find.Frame.Health.Text = "Health: " ..converttoletter(string.format("%.0f", Find4.Health))
  1513. Find.Frame.Fist.Text = "Fist: " ..converttoletter(string.format("%.0f", game.Players[plr.Name].PrivateStats.FistStrength.Value))
  1514. Find.Frame.Psychic.Text = "Psychic: " ..converttoletter(string.format("%.0f", game.Players[plr.Name].PrivateStats.PsychicPower.Value))
  1515. else
  1516. Find.Frame.Health.Text = ""
  1517. Find.Frame.Fist.Text = ""
  1518. Find.Frame.Psychic.Text = ""
  1519. end
  1520. end
  1521. end
  1522. end
  1523. end
  1524.  
  1525. function RemoveESP(plr)
  1526. local ESP = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  1527. if ESP then
  1528. ESP:Destroy()
  1529. end
  1530. end
  1531.  
  1532. Run:BindToRenderStep("UpdateESP", Enum.RenderPriority.Character.Value, function()
  1533. for _, v in next, Plrs:GetPlayers() do
  1534. UpdateESP(v)
  1535. end
  1536. end)
  1537.  
  1538. ESPButton.MouseButton1Click:connect(function()
  1539. ESPEnabled = not ESPEnabled
  1540. if ESPEnabled then
  1541. ESPButton.Text = "Player ESP On"
  1542. for _, v in next, Plrs:GetPlayers() do
  1543. if v ~= MyPlr then
  1544. if CharAddedEvent[v.Name] == nil then
  1545. CharAddedEvent[v.Name] = v.CharacterAdded:connect(function(Char)
  1546. if ESPEnabled then
  1547. RemoveESP(v)
  1548. CreateESP(v)
  1549. end
  1550. repeat wait() until Char:FindFirstChild("HumanoidRootPart")
  1551. end)
  1552. end
  1553. RemoveESP(v)
  1554. CreateESP(v)
  1555. end
  1556. end
  1557. else
  1558. ESPButton.Text = "Player ESP Off"
  1559. for _, v in next, Plrs:GetPlayers() do
  1560. RemoveESP(v)
  1561. end
  1562. end
  1563. end)
  1564.  
  1565. -- Death Return
  1566.  
  1567. deathreturnon = false
  1568. playerisdead = false
  1569.  
  1570. DeathReturnButton.MouseButton1Click:Connect(function()
  1571. if deathreturnon ~= true then
  1572. deathreturnon = true
  1573. DeathReturnButton.Text = "Death Return On"
  1574. else
  1575. deathreturnon = false
  1576. DeathReturnButton.Text = "Death Return Off"
  1577. end
  1578. end)
  1579.  
  1580. spawn(function()
  1581. while true do
  1582. if deathreturnon then
  1583. player = game:GetService("Players").LocalPlayer
  1584. player.Character.Humanoid.Died:connect(function()
  1585. playerisdead = true
  1586. end)
  1587. end
  1588. if not playerisdead then
  1589. x = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x
  1590. y = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y
  1591. z = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z
  1592. wait(0.5)
  1593. end
  1594. if playerisdead then
  1595. wait(5)
  1596. game:GetService("ReplicatedStorage").RemoteEvent:FireServer({[1] = "Respawn"})
  1597. wait(1)
  1598. game.Lighting.Blur.Enabled = false
  1599. game.Players.LocalPlayer.PlayerGui.IntroGui.Enabled = false
  1600. game.Players.LocalPlayer.PlayerGui.ScreenGui.Enabled = true
  1601. wait(4)
  1602. repeat wait(0.1) until game.Players.LocalPlayer.Character.Humanoid
  1603. if deathreturnon then
  1604. local FindHum = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  1605. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(x, y, z)
  1606. end
  1607. playerisdead = false
  1608. end
  1609. wait(1)
  1610. end
  1611. end)
  1612.  
  1613. -- Sath Talking Skip
  1614.  
  1615. SkipSathButton.MouseButton1Click:Connect(function()
  1616. game.ReplicatedStorage.RemoteEvent:FireServer("QuestTalkStart")
  1617. wait(0.5)
  1618. game.ReplicatedStorage.RemoteEvent:FireServer("QuestTalkEnd")
  1619. end)
  1620.  
  1621. -- NoClip
  1622.  
  1623. noclip = false
  1624.  
  1625. NoClipButton.MouseButton1Down:connect(function()
  1626. noclip = not noclip
  1627. if noclip then
  1628. NoClipButton.Text = "NoClip On"
  1629. else
  1630. NoClipButton.Text = "NoClip Off"
  1631. end
  1632. end)
  1633.  
  1634. game:GetService('RunService').Stepped:connect(function()
  1635. if noclip then
  1636. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1637. end
  1638. end)
  1639.  
  1640. -- Anti AFK
  1641.  
  1642. _G.afk = false
  1643.  
  1644. AntiAFKButton.MouseButton1Click:Connect(function()
  1645. if _G.afk == false then
  1646. _G.afk = true
  1647. AntiAFKButton.Text = "Anti-AFK On"
  1648. while _G.afk == true do
  1649. wait(3)
  1650. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-1000, 250, -1000))
  1651. wait(3)
  1652. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-1000, 250, -1000))
  1653. end
  1654. else
  1655. _G.afk = false
  1656. AntiAFKButton.Text = "Anti-AFK Off"
  1657. end
  1658. end)
  1659.  
  1660. -- Player TP
  1661.  
  1662. PlayerTPButton.MouseButton1Click:Connect(function()
  1663. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerName.Text].Character.HumanoidRootPart.CFrame
  1664. end)
  1665.  
  1666. -- TP Tool
  1667.  
  1668. TPToolButton.MouseButton1Down:connect(function()
  1669. local Tool = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  1670. Tool.RequiresHandle = false
  1671. Tool.RobloxLocked = true
  1672. Tool.Name = "TP Tool"
  1673. Tool.ToolTip = "Teleport Tool"
  1674. Tool.Equipped:connect(function(Mouse)
  1675. Mouse.Button1Down:connect(function()
  1676. if Mouse.Target then
  1677. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  1678. end
  1679. end)
  1680. end)
  1681. end)
  1682.  
  1683. -- Auto Farming
  1684.  
  1685. farmingfist = false
  1686. farmingbody = false
  1687. farmingspeed = false
  1688. farmingjump = false
  1689. farmingpsychic = false
  1690.  
  1691. AutoFist.MouseButton1Click:Connect(function()
  1692. if farmingfist ~= true then
  1693. farmingfist = true
  1694. AutoFist.Text = "Fist Farming On"
  1695. else
  1696. farmingfist = false
  1697. AutoFist.Text = "Fist Farming Off"
  1698. end
  1699. end)
  1700.  
  1701. AutoTough.MouseButton1Click:Connect(function()
  1702. if farmingbody ~= true then
  1703. farmingbody = true
  1704. AutoTough.Text = "Body Farming On"
  1705. else
  1706. farmingbody = false
  1707. AutoTough.Text = "Body Farming Off"
  1708. end
  1709. end)
  1710.  
  1711. AutoSpeed.MouseButton1Click:Connect(function()
  1712. if farmingspeed ~= true then
  1713. farmingspeed = true
  1714. AutoSpeed.Text = "Speed Farming On"
  1715. else
  1716. farmingspeed = false
  1717. AutoSpeed.Text = "Speed Farming Off"
  1718. end
  1719. end)
  1720.  
  1721. AutoJump.MouseButton1Click:Connect(function()
  1722. if farmingjump ~= true then
  1723. farmingjump = true
  1724. AutoJump.Text = "Jump Farming On"
  1725. else
  1726. farmingjump = false
  1727. AutoJump.Text = "Jump Farming Off"
  1728. end
  1729. end)
  1730.  
  1731. AutoPsychic.MouseButton1Click:Connect(function()
  1732. if farmingpsychic ~= true then
  1733. farmingpsychic = true
  1734. AutoPsychic.Text = "Psychic Farming On"
  1735. else
  1736. farmingpsychic = false
  1737. AutoPsychic.Text = "Psychic Farming Off"
  1738. end
  1739. end)
  1740.  
  1741. spawn(function()
  1742. while true do
  1743. if farmingfist and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1744. if tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 10e12 then
  1745. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-369, 15735, -9)
  1746. fistarguments = {"+FS6"}
  1747. farmingpsychic = false
  1748. AutoPsychic.Text = "Psychic Farming Off"
  1749. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 100e09 then
  1750. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1381, 9274, 1647)
  1751. fistarguments = {"+FS5"}
  1752. farmingpsychic = false
  1753. AutoPsychic.Text = "Psychic Farming Off"
  1754. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 1e09 then
  1755. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1176, 4789, -2293)
  1756. fistarguments = {"+FS4"}
  1757. farmingpsychic = false
  1758. AutoPsychic.Text = "Psychic Farming Off"
  1759. else
  1760. fistarguments = {"+FS3", "+FS2", "+FS1"}
  1761. end
  1762. while farmingfist do
  1763. game:GetService('RunService').Stepped:wait()
  1764. for i,v in pairs(fistarguments) do
  1765. game.ReplicatedStorage.RemoteEvent:FireServer({[1] = v})
  1766. end
  1767. end
  1768. end
  1769. wait(1)
  1770. end
  1771. end)
  1772.  
  1773. spawn(function()
  1774. while true do
  1775. if farmingbody and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1776. while farmingbody do
  1777. local bodyarguments = {"+BT5", "+BT4", "+BT3", "+BT2", "+BT1"}
  1778. local event = game.ReplicatedStorage.RemoteEvent
  1779. for i,v in pairs(bodyarguments) do
  1780. event:FireServer({[1] = v})
  1781. wait()
  1782. end
  1783. wait()
  1784. end
  1785. end
  1786. wait(1)
  1787. end
  1788. end)
  1789.  
  1790. spawn(function()
  1791. while true do
  1792. if farmingspeed and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1793. while farmingspeed do
  1794. local speedarguments = {"+MS5", "+MS4", "+MS3", "+MS2", "+MS1"}
  1795. local event = game.ReplicatedStorage.RemoteEvent
  1796. for i,v in pairs(speedarguments) do
  1797. event:FireServer({[1] = v})
  1798. wait()
  1799. end
  1800. wait()
  1801. end
  1802. end
  1803. wait(1)
  1804. end
  1805. end)
  1806.  
  1807. spawn(function()
  1808. while true do
  1809. if farmingjump and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1810. while farmingjump do
  1811. local jumparguments = {"+JF5", "+JF4", "+JF3", "+JF2", "+JF1"}
  1812. local event = game.ReplicatedStorage.RemoteEvent
  1813. for i,v in pairs(jumparguments) do
  1814. event:FireServer({[1] = v})
  1815. wait()
  1816. end
  1817. wait()
  1818. end
  1819. end
  1820. wait(1)
  1821. end
  1822. end)
  1823.  
  1824. spawn(function()
  1825. while true do
  1826. if farmingpsychic and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1827. if tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e15 then
  1828. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2544, 5412, -495)
  1829. psychicarguments = {"+PP6"}
  1830. farmingfist = false
  1831. AutoFist.Text = "Fist Farming Off"
  1832. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e12 then
  1833. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2582, 5516, -504)
  1834. psychicarguments = {"+PP5"}
  1835. farmingfist = false
  1836. AutoFist.Text = "Fist Farming Off"
  1837. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e09 then
  1838. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2560, 5500, -439)
  1839. psychicarguments = {"+PP4"}
  1840. farmingfist = false
  1841. AutoFist.Text = "Fist Farming Off"
  1842. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e06 then
  1843. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2527, 5486, -532)
  1844. psychicarguments = {"+PP3"}
  1845. farmingfist = false
  1846. AutoFist.Text = "Fist Farming Off"
  1847. else
  1848. psychicarguments = {"+PP2", "+PP1"}
  1849. end
  1850. while farmingpsychic do
  1851. game:GetService('RunService').Stepped:wait()
  1852. for i,v in pairs(psychicarguments) do
  1853. game.ReplicatedStorage.RemoteEvent:FireServer({[1] = v})
  1854. end
  1855. end
  1856. end
  1857. wait(1)
  1858. end
  1859. end)
  1860.  
  1861. -- Stats
  1862.  
  1863. spawn(function()
  1864. while true do
  1865. FistAmount.Text = converttoletter(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value))
  1866. BodyAmount.Text = converttoletter(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.BodyToughness.Value))
  1867. MovementAmount.Text = converttoletter(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.MovementSpeed.Value))
  1868. JumpAmount.Text = converttoletter(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.JumpForce.Value))
  1869. PsychicAmount.Text = converttoletter(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value))
  1870. wait(0.25)
  1871. end
  1872. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement