shiyamdabomb

Overpowered Super Power Training Simulator Script

May 4th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 86.17 KB | None | 0 0
  1. -- Open the Dev Console (F9) to read information about the GUI --
  2.  
  3. print("\nSuper Power Training Simulator LuckyGui Created by LuckyMMB @ V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\nLast updated 5th December 2018")
  4. print("\nThe Y Key activates Panic Mode and teleports you to the Safe Zone. This can be changed to another key.")
  5. print("\nUse the OnDeath Return button to respawn you and return to your previous position\nwhen you are killed. Great for farming BT in zones as soon as you\ncan take 1 hit and survive (eg. 6Bil in 100Bil+ BT Taining Area).")
  6. print("\nOnce your Fist, Body and Psychic stats are higher you will not be able to Auto\nFarm more than one skill at a time as you need to be near the\nlocation you are farming at.")
  7.  
  8. local plr = game:GetService("Players").LocalPlayer
  9. local char = plr.Character
  10. local root = char.HumanoidRootPart
  11. local Plrs = game:GetService("Players")
  12. local MyPlr = Plrs.LocalPlayer
  13. local MyChar = MyPlr.Character
  14. local UIS = game:GetService'UserInputService'
  15. local RepStor = game:GetService("ReplicatedStorage")
  16. local CoreGui = game:GetService("CoreGui")
  17. local Run = game:GetService("RunService")
  18. local mouse = game.Players.LocalPlayer:GetMouse()
  19. local human = plr.Character:WaitForChild("Humanoid")
  20.  
  21. -- Anti Idle --
  22. local VirtualUser=game:service'VirtualUser'
  23. game:service'Players'.LocalPlayer.Idled:connect(function()
  24. VirtualUser:CaptureController()
  25. VirtualUser:ClickButton2(Vector2.new())
  26. end)
  27.  
  28. showstartmessage = true
  29. showtopplayersactive = false
  30. showtopplayersfistactive = false
  31. showtopplayersbodyactive = false
  32. showtopplayersspeedactive = false
  33. showtopplayersjumpactive = false
  34. showtopplayerspsychicactive = false
  35. farmbtsafetyactive = false
  36. farmbtsafety2active = false
  37. settplocation = false
  38. playerdied = false
  39. deathreturnactive = false
  40. godmodeactive = false
  41. noclip = false
  42. resetplayerstat = false
  43. killplayeractive = false
  44. farmallactive = false
  45. farmfistactive = false
  46. farmbodyactive = false
  47. farmspeedactive = false
  48. farmjumpactive = false
  49. farmpsychicactive = false
  50. punchmodeactive = false
  51. ESPEnabled = false
  52. ESPLength = 20000
  53.  
  54. CharAddedEvent = { }
  55.  
  56. Plrs.PlayerAdded:connect(function(plr)
  57. if CharAddedEvent[plr.Name] == nil then
  58. CharAddedEvent[plr.Name] = plr.CharacterAdded:connect(function(char)
  59. if ESPEnabled then
  60. RemoveESP(plr)
  61. CreateESP(plr)
  62. end
  63. end)
  64. end
  65. end)
  66.  
  67. Plrs.PlayerRemoving:connect(function(plr)
  68. if CharAddedEvent[plr.Name] ~= nil then
  69. CharAddedEvent[plr.Name]:Disconnect()
  70. CharAddedEvent[plr.Name] = nil
  71. end
  72. RemoveESP(plr)
  73. end)
  74.  
  75. function CreateESP(plr)
  76. if plr ~= nil then
  77. local GetChar = plr.Character
  78. if not GetChar then return end
  79. local GetHead do
  80. repeat wait() until GetChar:FindFirstChild("Head")
  81. end
  82. GetHead = GetChar.Head
  83.  
  84. local bb = Instance.new("BillboardGui", CoreGui)
  85. bb.Adornee = GetHead
  86. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  87. bb.AlwaysOnTop = true
  88. bb.Size = UDim2.new(0, 5, 0, 5)
  89. bb.StudsOffset = Vector3.new(0, 3, 0)
  90. bb.Name = "ESP_" .. plr.Name
  91.  
  92. local frame = Instance.new("Frame", bb)
  93. frame.ZIndex = 10
  94. frame.BackgroundTransparency = 1
  95. frame.Size = UDim2.new(1, 0, 1, 0)
  96.  
  97. local TxtName = Instance.new("TextLabel", frame)
  98. TxtName.Name = "Names"
  99. TxtName.ZIndex = 10
  100. TxtName.Text = plr.Name
  101. TxtName.BackgroundTransparency = 1
  102. TxtName.Position = UDim2.new(0, 0, 0, -45)
  103. TxtName.Size = UDim2.new(1, 0, 10, 0)
  104. TxtName.Font = "SourceSansBold"
  105. TxtName.TextColor3 = Color3.new(0, 0, 0)
  106. TxtName.TextSize = 14
  107. TxtName.TextStrokeTransparency = 0.5
  108.  
  109. local TxtDist = Instance.new("TextLabel", frame)
  110. TxtDist.Name = "Dist"
  111. TxtDist.ZIndex = 10
  112. TxtDist.Text = ""
  113. TxtDist.BackgroundTransparency = 1
  114. TxtDist.Position = UDim2.new(0, 0, 0, -35)
  115. TxtDist.Size = UDim2.new(1, 0, 10, 0)
  116. TxtDist.Font = "SourceSansBold"
  117. TxtDist.TextColor3 = Color3.new(0, 0, 0)
  118. TxtDist.TextSize = 15
  119. TxtDist.TextStrokeTransparency = 0.5
  120.  
  121. local TxtHealth = Instance.new("TextLabel", frame)
  122. TxtHealth.Name = "Health"
  123. TxtHealth.ZIndex = 10
  124. TxtHealth.Text = ""
  125. TxtHealth.BackgroundTransparency = 1
  126. TxtHealth.Position = UDim2.new(0, 0, 0, -25)
  127. TxtHealth.Size = UDim2.new(1, 0, 10, 0)
  128. TxtHealth.Font = "SourceSansBold"
  129. TxtHealth.TextColor3 = Color3.new(0, 0, 0)
  130. TxtHealth.TextSize = 15
  131. TxtHealth.TextStrokeTransparency = 0.5
  132.  
  133. local TxtFist = Instance.new("TextLabel", frame)
  134. TxtFist.Name = "Fist"
  135. TxtFist.ZIndex = 10
  136. TxtFist.Text = ""
  137. TxtFist.BackgroundTransparency = 1
  138. TxtFist.Position = UDim2.new(0, 0, 0, -15)
  139. TxtFist.Size = UDim2.new(1, 0, 10, 0)
  140. TxtFist.Font = "SourceSansBold"
  141. TxtFist.TextColor3 = Color3.new(0, 0, 0)
  142. TxtFist.TextSize = 15
  143. TxtFist.TextStrokeTransparency = 0.5
  144.  
  145. local TxtPsychic = Instance.new("TextLabel", frame)
  146. TxtPsychic.Name = "Psychic"
  147. TxtPsychic.ZIndex = 10
  148. TxtPsychic.Text = ""
  149. TxtPsychic.BackgroundTransparency = 1
  150. TxtPsychic.Position = UDim2.new(0, 0, 0, -5)
  151. TxtPsychic.Size = UDim2.new(1, 0, 10, 0)
  152. TxtPsychic.Font = "SourceSansBold"
  153. TxtPsychic.TextColor3 = Color3.new(0, 0, 0)
  154. TxtPsychic.TextSize = 15
  155. TxtPsychic.TextStrokeTransparency = 0.5
  156. end
  157. end
  158.  
  159. function UpdateESP(plr)
  160. local Find = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  161. if Find then
  162. local plrStatus = game.Players[plr.Name].leaderstats.Status
  163. if plrStatus.Value == "Criminal" then
  164. Find.Frame.Names.TextColor3 = Color3.new(1, 0.1, 1)
  165. elseif plrStatus.Value == "Lawbreaker" then
  166. Find.Frame.Names.TextColor3 = Color3.new(1, 0.1, 0.1)
  167. elseif plrStatus.Value == "Guardian" then
  168. Find.Frame.Names.TextColor3 = Color3.new(0.1, 0.8, 1)
  169. elseif plrStatus.Value == "Protector" then
  170. Find.Frame.Names.TextColor3 = Color3.new(0.1, 0.1, 1)
  171. elseif plrStatus.Value == "Supervillain" then
  172. Find.Frame.Names.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  173. elseif plrStatus.Value == "Superhero" then
  174. Find.Frame.Names.TextColor3 = Color3.new(0.8, 0.8, 0)
  175. else
  176. Find.Frame.Names.TextColor3 = Color3.new(1, 1, 1)
  177. end
  178. Find.Frame.Dist.TextColor3 = Color3.new(1, 1, 1)
  179. Find.Frame.Health.TextColor3 = Color3.new(1, 1, 1)
  180. Find.Frame.Fist.TextColor3 = Color3.new(1, 1, 1)
  181. Find.Frame.Psychic.TextColor3 = Color3.new(1, 1, 1)
  182. local GetChar = plr.Character
  183. if MyChar and GetChar then
  184. local Find2 = MyChar:FindFirstChild("HumanoidRootPart")
  185. local Find3 = GetChar:FindFirstChild("HumanoidRootPart")
  186. local Find4 = GetChar:FindFirstChildOfClass("Humanoid")
  187. if Find2 and Find3 then
  188. local pos = Find3.Position
  189. local Dist = (Find2.Position - pos).magnitude
  190. if Dist > ESPLength then
  191. Find.Frame.Names.Visible = false
  192. Find.Frame.Dist.Visible = false
  193. Find.Frame.Health.Visible = false
  194. Find.Frame.Fist.Visible = false
  195. Find.Frame.Psychic.Visible = false
  196. return
  197. else
  198. Find.Frame.Names.Visible = true
  199. Find.Frame.Dist.Visible = true
  200. Find.Frame.Health.Visible = true
  201. Find.Frame.Fist.Visible = true
  202. Find.Frame.Psychic.Visible = true
  203. end
  204. Find.Frame.Dist.Text = "Distance: " .. string.format("%.0f", Dist)
  205. --Find.Frame.Pos.Text = "(X: " .. string.format("%.0f", pos.X) .. ", Y: " .. string.format("%.0f", pos.Y) .. ", Z: " .. string.format("%.0f", pos.Z) .. ")"
  206. if Find4 then
  207. Find.Frame.Health.Text = "Health: " ..converttoletter(string.format("%.0f", Find4.Health))
  208. Find.Frame.Fist.Text = "Fist: " ..converttoletter(string.format("%.0f", game.Players[plr.Name].PrivateStats.FistStrength.Value))
  209. Find.Frame.Psychic.Text = "Psychic: " ..converttoletter(string.format("%.0f", game.Players[plr.Name].PrivateStats.PsychicPower.Value))
  210. else
  211. Find.Frame.Health.Text = ""
  212. Find.Frame.Fist.Text = ""
  213. Find.Frame.Psychic.Text = ""
  214. end
  215. end
  216. end
  217. end
  218. end
  219.  
  220. function RemoveESP(plr)
  221. local ESP = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  222. if ESP then
  223. ESP:Destroy()
  224. end
  225. end
  226.  
  227. local MainGUI = Instance.new("ScreenGui")
  228. local TopFrame = Instance.new("Frame")
  229. local MainFrame = Instance.new("Frame")
  230. local Open = Instance.new("TextButton")
  231. local Close = Instance.new("TextButton")
  232. local Minimize = Instance.new("TextButton")
  233. local cf = Instance.new("Frame")
  234. local c1 = Instance.new("TextLabel")
  235. local c = Instance.new("TextButton")
  236. local DeathReturn = Instance.new("TextButton")
  237. local PunchMode = Instance.new("TextButton")
  238. local WayPoints = Instance.new("TextButton")
  239. local WayPointsFrame = Instance.new("Frame")
  240. local FarmExp = Instance.new("TextButton")
  241. local FarmExpFrame = Instance.new("Frame")
  242. local ShowLocation = Instance.new("TextLabel")
  243. local SetLocation = Instance.new("TextButton")
  244. local TPLocation = Instance.new("TextButton")
  245. local Location1 = Instance.new("TextButton")
  246. local Location2 = Instance.new("TextButton")
  247. local LocationFS1B = Instance.new("TextButton")
  248. local LocationFS100B = Instance.new("TextButton")
  249. local LocationFS10T = Instance.new("TextButton")
  250. local Location3 = Instance.new("TextButton")
  251. local Location4 = Instance.new("TextButton")
  252. local Location5 = Instance.new("TextButton")
  253. local Location6 = Instance.new("TextButton")
  254. local Location7 = Instance.new("TextButton")
  255. local Location8 = Instance.new("TextButton")
  256. local Location9 = Instance.new("TextButton")
  257. local Location10 = Instance.new("TextButton")
  258. local LocationBT1B = Instance.new("TextButton")
  259. local LocationBT100B = Instance.new("TextButton")
  260. local LocationBT10T = Instance.new("TextButton")
  261. local LocationPP1M = Instance.new("TextButton")
  262. local LocationPP1B = Instance.new("TextButton")
  263. local LocationPP1T = Instance.new("TextButton")
  264. local LocationPP1Qa = Instance.new("TextButton")
  265. local LocationBody1B = Instance.new("TextButton")
  266. local FarmAll = Instance.new("TextButton")
  267. local FarmFist = Instance.new("TextButton")
  268. local FarmBody = Instance.new("TextButton")
  269. local FarmSpeed = Instance.new("TextButton")
  270. local FarmJump = Instance.new("TextButton")
  271. local SavePosition = Instance.new("TextLabel")
  272. local FarmPsychic = Instance.new("TextButton")
  273. local FarmBodyLabel = Instance.new("TextLabel")
  274. local FarmSpeedLabel = Instance.new("TextLabel")
  275. local esptrack = Instance.new("TextButton")
  276. local ESPLength = Instance.new("TextBox")
  277. local Extras = Instance.new("TextButton")
  278. local ExtrasFrame = Instance.new("Frame")
  279. local PlayerInfo = Instance.new("TextButton")
  280. local PlayerInfoFrame = Instance.new("Frame")
  281. local ShowTopPlayers = Instance.new("TextButton")
  282. local ShowBetterFS = Instance.new("TextButton")
  283. local ShowBetterBT = Instance.new("TextButton")
  284. local ShowBetterPP = Instance.new("TextButton")
  285. local ShowWorseFS = Instance.new("TextButton")
  286. local ShowWorseBT = Instance.new("TextButton")
  287. local ShowWorsePP = Instance.new("TextButton")
  288. local PlayerInfoStatsFrame = Instance.new("Frame")
  289. local PlayerInfoStatsClose = Instance.new("TextButton")
  290. local StatBestFistText1 = Instance.new("TextLabel")
  291. local StatBestBodyText1 = Instance.new("TextLabel")
  292. local StatBestSpeedText1 = Instance.new("TextLabel")
  293. local StatBestJumpText1 = Instance.new("TextLabel")
  294. local StatBestPsychicText1 = Instance.new("TextLabel")
  295. local PlayerInfoStatsText1 = Instance.new("TextLabel")
  296. local ShowStatsFist1 = Instance.new("TextLabel")
  297. local ShowStatsBody1 = Instance.new("TextLabel")
  298. local ShowStatsSpeed1 = Instance.new("TextLabel")
  299. local ShowStatsJump1 = Instance.new("TextLabel")
  300. local ShowStatsPsychic1 = Instance.new("TextLabel")
  301. local ShowStatsFist2 = Instance.new("TextLabel")
  302. local ShowStatsBody2 = Instance.new("TextLabel")
  303. local ShowStatsSpeed2 = Instance.new("TextLabel")
  304. local ShowStatsJump2 = Instance.new("TextLabel")
  305. local ShowStatsPsychic2 = Instance.new("TextLabel")
  306. local AnnoyNameLabel = Instance.new("TextLabel")
  307. local AnnoyName = Instance.new("TextBox")
  308. local AnnoyStart = Instance.new("TextButton")
  309. local KillPlayerStart = Instance.new("TextButton")
  310. local TptoPlayer = Instance.new("TextButton")
  311. local PanicToggleLabel = Instance.new("TextLabel")
  312. local farmbtsafety = Instance.new("TextButton")
  313. local farmbtsafetyText1 = Instance.new("TextLabel")
  314. local farmbtsafetylevel = Instance.new("TextBox")
  315. local farmbtsafety2 = Instance.new("TextButton")
  316. local farmbtsafetylabel = Instance.new("TextLabel")
  317. local PanicToggle = Instance.new("TextBox")
  318. local ReJoinServer = Instance.new("TextButton")
  319. local InfoScreen = Instance.new("TextButton")
  320. local InfoFrame = Instance.new("Frame")
  321. local InfoText1 = Instance.new("TextLabel")
  322. local PlayerName = Instance.new("TextBox")
  323. local StatsFrame = Instance.new("Frame")
  324. local ShowStats1 = Instance.new("TextLabel")
  325. local ShowStats2 = Instance.new("TextLabel")
  326. local StatNameSet = Instance.new("TextButton")
  327. local NoClip = Instance.new("TextButton")
  328. local GodMode = Instance.new("TextButton")
  329.  
  330. -- Properties
  331.  
  332. MainGUI.Name = "MainGUI"
  333. MainGUI.Parent = game.CoreGui
  334. MainGUI.ResetOnSpawn = false
  335. local MainCORE = game.CoreGui["MainGUI"]
  336.  
  337. TopFrame.Name = "TopFrame"
  338. TopFrame.Parent = MainGUI
  339. TopFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  340. TopFrame.BorderColor3 = Color3.new(0, 0, 0)
  341. TopFrame.BackgroundTransparency = 1
  342. TopFrame.Position = UDim2.new(0.5, -30, 0, -27)
  343. TopFrame.Size = UDim2.new(0, 80, 0, 20)
  344. TopFrame.Visible = false
  345.  
  346. cf.Name = "cf"
  347. cf.Parent = MainGUI
  348. cf.BackgroundColor3 = Color3.new(0, 0, 0)
  349. cf.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  350. cf.BackgroundTransparency = 0
  351. cf.Position = UDim2.new(0.5, -195, 0.5, -110)
  352. cf.Size = UDim2.new(0, 390, 0, 220)
  353. cf.Visible = true
  354.  
  355. c1.Name = "c1"
  356. c1.Parent = cf
  357. c1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  358. c1.BackgroundTransparency = 1
  359. c1.Position = UDim2.new(0, 10, 0, 13)
  360. c1.Size = UDim2.new(0, 370, 0, 160)
  361. c1.Font = Enum.Font.Fantasy
  362. c1.TextColor3 = Color3.new(1, 1, 1)
  363. c1.Text = "SUPER POWERS TRAINING SIMULATOR GUI\nmade by LuckyMMB#8645 (discord)\n\nPress F9 to read more information about the GUI\n\nThis GUI is free, if you paid for it you were scammed\nand should report it.\n\nNo unauthorized use of this GUI without written\npermission from the creator."
  364. c1.TextSize = 17
  365.  
  366. c.Name = "c"
  367. c.Parent = cf
  368. c.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  369. c.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  370. c.Position = UDim2.new(0.5, -30, 0, 190)
  371. c.Size = UDim2.new(0, 60, 0, 20)
  372. c.Font = Enum.Font.Fantasy
  373. c.Text = "CLOSE"
  374. c.TextColor3 = Color3.new(1, 0, 0)
  375. c.TextSize = 17
  376. c.TextWrapped = true
  377.  
  378. Open.Name = "Open"
  379. Open.Parent = TopFrame
  380. Open.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  381. Open.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  382. Open.Size = UDim2.new(0, 60, 0, 20)
  383. Open.Font = Enum.Font.Fantasy
  384. Open.Text = "Open"
  385. Open.TextColor3 = Color3.new(1, 1, 1)
  386. Open.TextSize = 18
  387. Open.Selectable = true
  388. Open.TextWrapped = true
  389.  
  390. MainFrame.Name = "MainFrame"
  391. MainFrame.Parent = MainGUI
  392. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  393. MainFrame.BackgroundTransparency = 0.5
  394. MainFrame.BorderSizePixel = 0
  395. MainFrame.Position = UDim2.new(0.5, -382.5, 0, -32)
  396. MainFrame.Size = UDim2.new(0, 765, 0, 30)
  397. if not cf.Visible then MainGUI:Destroy() else MainFrame.Visible = true end
  398.  
  399. Close.Name = "Close"
  400. Close.Parent = MainFrame
  401. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  402. Close.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  403. Close.Position = UDim2.new(0, 10, 0, 5)
  404. Close.Size = UDim2.new(0, 20, 0, 20)
  405. Close.Font = Enum.Font.Fantasy
  406. Close.Text = "X"
  407. Close.TextColor3 = Color3.new(1, 0, 0)
  408. Close.TextSize = 17
  409. Close.TextScaled = true
  410. Close.TextWrapped = true
  411.  
  412. Minimize.Name = "Minimize"
  413. Minimize.Parent = MainFrame
  414. Minimize.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  415. Minimize.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  416. Minimize.Position = UDim2.new(0, 35, 0, 5)
  417. Minimize.Size = UDim2.new(0, 20, 0, 20)
  418. Minimize.Font = Enum.Font.Fantasy
  419. Minimize.Text = "-"
  420. Minimize.TextColor3 = Color3.new(1, 0, 1)
  421. Minimize.TextSize = 17
  422. Minimize.TextScaled = true
  423. Minimize.TextWrapped = true
  424.  
  425. WayPoints.Name = "WayPoints"
  426. WayPoints.Parent = MainFrame
  427. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  428. WayPoints.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  429. WayPoints.Position = UDim2.new(0, 60, 0, 5)
  430. WayPoints.Size = UDim2.new(0, 65, 0, 20)
  431. WayPoints.Font = Enum.Font.Fantasy
  432. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  433. WayPoints.Text = "Teleport"
  434. WayPoints.TextSize = 17
  435. WayPoints.TextWrapped = true
  436.  
  437. WayPointsFrame.Name = "WayPointsFrame"
  438. WayPointsFrame.Parent = MainFrame
  439. WayPointsFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  440. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  441. WayPointsFrame.BackgroundTransparency = 0.2
  442. WayPointsFrame.Position = UDim2.new(0, 1, 0, 33)
  443. WayPointsFrame.Size = UDim2.new(0, 375, 0, 480)
  444. WayPointsFrame.Visible = false
  445.  
  446. FarmExp.Name = "FarmExp"
  447. FarmExp.Parent = MainFrame
  448. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  449. FarmExp.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  450. FarmExp.Position = UDim2.new(0, 130, 0, 5)
  451. FarmExp.Size = UDim2.new(0, 75, 0, 20)
  452. FarmExp.Font = Enum.Font.Fantasy
  453. FarmExp.TextColor3 = Color3.new(1, 1, 1)
  454. FarmExp.Text = "Farm Exp"
  455. FarmExp.TextSize = 17
  456. FarmExp.TextWrapped = true
  457.  
  458. FarmExpFrame.Name = "FarmExpFrame"
  459. FarmExpFrame.Parent = MainFrame
  460. FarmExpFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  461. FarmExpFrame.BorderColor3 = Color3.new(0, 0, 0)
  462. FarmExpFrame.BackgroundTransparency = 0.2
  463. FarmExpFrame.Position = UDim2.new(0, 62.5, 0, 33)
  464. FarmExpFrame.Size = UDim2.new(0, 210, 0, 165)
  465. FarmExpFrame.Visible = false
  466.  
  467. ShowLocation.Name = "ShowLocation"
  468. ShowLocation.Parent = WayPointsFrame
  469. ShowLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  470. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  471. ShowLocation.BorderColor3 = Color3.new(0, 0, 0)
  472. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  473. ShowLocation.Size = UDim2.new(0, 170, 0, 20)
  474. ShowLocation.Font = Enum.Font.Fantasy
  475. ShowLocation.Text = "Current Location"
  476. ShowLocation.TextWrapped = true
  477. ShowLocation.TextSize = 15
  478.  
  479. SetLocation.Name = "SetLocation"
  480. SetLocation.Parent = WayPointsFrame
  481. SetLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  482. SetLocation.TextColor3 = Color3.new(1, 1, 1)
  483. SetLocation.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  484. SetLocation.Position = UDim2.new(0, 180, 0, 5)
  485. SetLocation.Size = UDim2.new(0, 120, 0, 20)
  486. SetLocation.Font = Enum.Font.Fantasy
  487. SetLocation.Text = "Set Location"
  488. SetLocation.TextWrapped = true
  489. SetLocation.TextSize = 16
  490.  
  491. TPLocation.Name = "TPLocation"
  492. TPLocation.Parent = WayPointsFrame
  493. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  494. TPLocation.TextColor3 = Color3.new(1, 1, 1)
  495. TPLocation.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  496. TPLocation.Position = UDim2.new(0, 305, 0, 5)
  497. TPLocation.Size = UDim2.new(0, 65, 0, 20)
  498. TPLocation.Font = Enum.Font.Fantasy
  499. TPLocation.Text = "Tp to"
  500. TPLocation.TextWrapped = true
  501. TPLocation.TextSize = 16
  502.  
  503. Location1.Name = "Location1"
  504. Location1.Parent = WayPointsFrame
  505. Location1.BackgroundColor3 = Color3.new(255/255, 94/255, 40/255)
  506. Location1.TextColor3 = Color3.new(1, 1, 1)
  507. Location1.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  508. Location1.Position = UDim2.new(0, 5, 0, 30)
  509. Location1.Size = UDim2.new(0, 365, 0, 20)
  510. Location1.Font = Enum.Font.Fantasy
  511. Location1.Text = "Teleport to Safe Zone"
  512. Location1.TextWrapped = true
  513. Location1.TextSize = 16
  514.  
  515. Location2.Name = "Location2"
  516. Location2.Parent = WayPointsFrame
  517. Location2.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  518. Location2.TextColor3 = Color3.new(1, 1, 1)
  519. Location2.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  520. Location2.Position = UDim2.new(0, 5, 0, 55)
  521. Location2.Size = UDim2.new(0, 365, 0, 20)
  522. Location2.Font = Enum.Font.Fantasy
  523. Location2.Text = "Teleport to Rock [10x Fist Strength]"
  524. Location2.TextWrapped = true
  525. Location2.TextSize = 16
  526.  
  527. Location7.Name = "Location7"
  528. Location7.Parent = WayPointsFrame
  529. Location7.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  530. Location7.TextColor3 = Color3.new(1, 1, 1)
  531. Location7.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  532. Location7.Position = UDim2.new(0, 5, 0, 80)
  533. Location7.Size = UDim2.new(0, 365, 0, 20)
  534. Location7.Font = Enum.Font.Fantasy
  535. Location7.Text = "Teleport to Crystal [100x Fist Strength]"
  536. Location7.TextWrapped = true
  537. Location7.TextSize = 16
  538.  
  539. LocationFS1B.Name = "LocationFS1B"
  540. LocationFS1B.Parent = WayPointsFrame
  541. LocationFS1B.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  542. LocationFS1B.TextColor3 = Color3.new(1, 1, 1)
  543. LocationFS1B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  544. LocationFS1B.Position = UDim2.new(0, 5, 0, 105)
  545. LocationFS1B.Size = UDim2.new(0, 365, 0, 20)
  546. LocationFS1B.Font = Enum.Font.Fantasy
  547. LocationFS1B.Text = "Teleport to Blue Star [2k x FS]: 1B+ FS required"
  548. LocationFS1B.TextWrapped = true
  549. LocationFS1B.TextSize = 16
  550.  
  551. LocationFS100B.Name = "LocationFS100B"
  552. LocationFS100B.Parent = WayPointsFrame
  553. LocationFS100B.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  554. LocationFS100B.TextColor3 = Color3.new(1, 1, 1)
  555. LocationFS100B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  556. LocationFS100B.Position = UDim2.new(0, 5, 0, 130)
  557. LocationFS100B.Size = UDim2.new(0, 365, 0, 20)
  558. LocationFS100B.Font = Enum.Font.Fantasy
  559. LocationFS100B.Text = "Teleport to Green Star [40k x FS]: 100B+ FS required"
  560. LocationFS100B.TextWrapped = true
  561. LocationFS100B.TextSize = 16
  562.  
  563. LocationFS10T.Name = "LocationFS10T"
  564. LocationFS10T.Parent = WayPointsFrame
  565. LocationFS10T.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  566. LocationFS10T.TextColor3 = Color3.new(1, 1, 1)
  567. LocationFS10T.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  568. LocationFS10T.Position = UDim2.new(0, 5, 0, 155)
  569. LocationFS10T.Size = UDim2.new(0, 365, 0, 20)
  570. LocationFS10T.Font = Enum.Font.Fantasy
  571. LocationFS10T.Text = "Teleport to Orange Star [800k x FS]: 10T+ FS required"
  572. LocationFS10T.TextWrapped = true
  573. LocationFS10T.TextSize = 16
  574.  
  575. Location3.Name = "Location3"
  576. Location3.Parent = WayPointsFrame
  577. Location3.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  578. Location3.TextColor3 = Color3.new(1, 1, 1)
  579. Location3.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  580. Location3.Position = UDim2.new(0, 5, 0, 180)
  581. Location3.Size = UDim2.new(0, 365, 0, 20)
  582. Location3.Font = Enum.Font.Fantasy
  583. Location3.Text = "Tp to City Port Training 1 [5x BT]: 100+ BT required"
  584. Location3.TextWrapped = true
  585. Location3.TextSize = 16
  586.  
  587. Location4.Name = "Location4"
  588. Location4.Parent = WayPointsFrame
  589. Location4.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  590. Location4.TextColor3 = Color3.new(1, 1, 1)
  591. Location4.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  592. Location4.Position = UDim2.new(0, 5, 0, 205)
  593. Location4.Size = UDim2.new(0, 365, 0, 20)
  594. Location4.Font = Enum.Font.Fantasy
  595. Location4.Text = "Tp to City Port Training 2 [10x BT]: 10k+ BT required"
  596. Location4.TextWrapped = true
  597. Location4.TextSize = 16
  598.  
  599. Location5.Name = "Location5"
  600. Location5.Parent = WayPointsFrame
  601. Location5.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  602. Location5.TextColor3 = Color3.new(1, 1, 1)
  603. Location5.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  604. Location5.Position = UDim2.new(0, 5, 0, 230)
  605. Location5.Size = UDim2.new(0, 365, 0, 20)
  606. Location5.Font = Enum.Font.Fantasy
  607. Location5.Text = "Tp to Ice Mountain [20x BT]: 100k+ BT required"
  608. Location5.TextWrapped = true
  609. Location5.TextSize = 16
  610.  
  611. Location6.Name = "Location6"
  612. Location6.Parent = WayPointsFrame
  613. Location6.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  614. Location6.TextColor3 = Color3.new(1, 1, 1)
  615. Location6.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  616. Location6.Position = UDim2.new(0, 5, 0, 255)
  617. Location6.Size = UDim2.new(0, 365, 0, 20)
  618. Location6.Font = Enum.Font.Fantasy
  619. Location6.Text = "Tp to Tornado [50x BT]: 1M+ BT required"
  620. Location6.TextWrapped = true
  621. Location6.TextSize = 16
  622.  
  623. Location8.Name = "Location8"
  624. Location8.Parent = WayPointsFrame
  625. Location8.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  626. Location8.TextColor3 = Color3.new(1, 1, 1)
  627. Location8.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  628. Location8.Position = UDim2.new(0, 5, 0, 280)
  629. Location8.Size = UDim2.new(0, 365, 0, 20)
  630. Location8.Font = Enum.Font.Fantasy
  631. Location8.Text = "Tp to Volcano [100x BT]: 10M+ BT required"
  632. Location8.TextWrapped = true
  633. Location8.TextSize = 16
  634.  
  635. LocationBT1B.Name = "LocationBT1B"
  636. LocationBT1B.Parent = WayPointsFrame
  637. LocationBT1B.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  638. LocationBT1B.TextColor3 = Color3.new(1, 1, 1)
  639. LocationBT1B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  640. LocationBT1B.Position = UDim2.new(0, 5, 0, 305)
  641. LocationBT1B.Size = UDim2.new(0, 365, 0, 20)
  642. LocationBT1B.Font = Enum.Font.Fantasy
  643. LocationBT1B.Text = "Tp to [2k x BT] Area: 1B+ BT required"
  644. LocationBT1B.TextWrapped = true
  645. LocationBT1B.TextSize = 16
  646.  
  647. LocationBT100B.Name = "LocationBT100B"
  648. LocationBT100B.Parent = WayPointsFrame
  649. LocationBT100B.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  650. LocationBT100B.TextColor3 = Color3.new(1, 1, 1)
  651. LocationBT100B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  652. LocationBT100B.Position = UDim2.new(0, 5, 0, 330)
  653. LocationBT100B.Size = UDim2.new(0, 365, 0, 20)
  654. LocationBT100B.Font = Enum.Font.Fantasy
  655. LocationBT100B.Text = "Tp to [40k x BT] Area: 100B+ BT required"
  656. LocationBT100B.TextWrapped = true
  657. LocationBT100B.TextSize = 16
  658.  
  659. LocationBT10T.Name = "LocationBT10T"
  660. LocationBT10T.Parent = WayPointsFrame
  661. LocationBT10T.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  662. LocationBT10T.TextColor3 = Color3.new(1, 1, 1)
  663. LocationBT10T.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  664. LocationBT10T.Position = UDim2.new(0, 5, 0, 355)
  665. LocationBT10T.Size = UDim2.new(0, 365, 0, 20)
  666. LocationBT10T.Font = Enum.Font.Fantasy
  667. LocationBT10T.Text = "Tp to [800k x BT] Area: 10T+ BT required"
  668. LocationBT10T.TextWrapped = true
  669. LocationBT10T.TextSize = 16
  670.  
  671. LocationPP1M.Name = "LocationPP1M"
  672. LocationPP1M.Parent = WayPointsFrame
  673. LocationPP1M.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  674. LocationPP1M.TextColor3 = Color3.new(1, 1, 1)
  675. LocationPP1M.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  676. LocationPP1M.Position = UDim2.new(0, 5, 0, 380)
  677. LocationPP1M.Size = UDim2.new(0, 365, 0, 20)
  678. LocationPP1M.Font = Enum.Font.Fantasy
  679. LocationPP1M.Text = "Tp to Psychic Island [100x PP]: 1M+ PP required"
  680. LocationPP1M.TextWrapped = true
  681. LocationPP1M.TextSize = 16
  682.  
  683. LocationPP1B.Name = "LocationPP1B"
  684. LocationPP1B.Parent = WayPointsFrame
  685. LocationPP1B.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  686. LocationPP1B.TextColor3 = Color3.new(1, 1, 1)
  687. LocationPP1B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  688. LocationPP1B.Position = UDim2.new(0, 5, 0, 405)
  689. LocationPP1B.Size = UDim2.new(0, 365, 0, 20)
  690. LocationPP1B.Font = Enum.Font.Fantasy
  691. LocationPP1B.Text = "Tp to Psychic Island [10k x PP]: 1B+ PP required"
  692. LocationPP1B.TextWrapped = true
  693. LocationPP1B.TextSize = 16
  694.  
  695. LocationPP1T.Name = "LocationPP1T"
  696. LocationPP1T.Parent = WayPointsFrame
  697. LocationPP1T.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  698. LocationPP1T.TextColor3 = Color3.new(1, 1, 1)
  699. LocationPP1T.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  700. LocationPP1T.Position = UDim2.new(0, 5, 0, 430)
  701. LocationPP1T.Size = UDim2.new(0, 365, 0, 20)
  702. LocationPP1T.Font = Enum.Font.Fantasy
  703. LocationPP1T.Text = "Tp to Psychic Island [1M x PP]: 1T+ PP required"
  704. LocationPP1T.TextWrapped = true
  705. LocationPP1T.TextSize = 16
  706.  
  707. LocationPP1Qa.Name = "LocationPP1Qa"
  708. LocationPP1Qa.Parent = WayPointsFrame
  709. LocationPP1Qa.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  710. LocationPP1Qa.TextColor3 = Color3.new(1, 1, 1)
  711. LocationPP1Qa.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  712. LocationPP1Qa.Position = UDim2.new(0, 5, 0, 455)
  713. LocationPP1Qa.Size = UDim2.new(0, 365, 0, 20)
  714. LocationPP1Qa.Font = Enum.Font.Fantasy
  715. LocationPP1Qa.Text = "Tp to Psychic Island [100M x PP]: 1Qa+ PP required"
  716. LocationPP1Qa.TextWrapped = true
  717. LocationPP1Qa.TextSize = 16
  718.  
  719. FarmAll.Name = "FarmAll"
  720. FarmAll.Parent = FarmExpFrame
  721. FarmAll.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  722. FarmAll.TextColor3 = Color3.new(1, 1, 1)
  723. FarmAll.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  724. FarmAll.Position = UDim2.new(0, 5, 0, 5)
  725. FarmAll.Size = UDim2.new(0, 200, 0, 20)
  726. FarmAll.Font = Enum.Font.Fantasy
  727. FarmAll.Text = "Farm All: OFF"
  728. FarmAll.TextWrapped = true
  729. FarmAll.TextSize = 16
  730.  
  731. FarmFist.Name = "FarmFist"
  732. FarmFist.Parent = FarmExpFrame
  733. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  734. FarmFist.TextColor3 = Color3.new(1, 1, 1)
  735. FarmFist.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  736. FarmFist.Position = UDim2.new(0, 5, 0, 40)
  737. FarmFist.Size = UDim2.new(0, 200, 0, 20)
  738. FarmFist.Font = Enum.Font.Fantasy
  739. FarmFist.Text = "Farm Fist Strength: OFF"
  740. FarmFist.TextWrapped = true
  741. FarmFist.TextSize = 16
  742.  
  743. FarmBody.Name = "FarmBody"
  744. FarmBody.Parent = FarmExpFrame
  745. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  746. FarmBody.TextColor3 = Color3.new(1, 1, 1)
  747. FarmBody.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  748. FarmBody.Position = UDim2.new(0, 5, 0, 65)
  749. FarmBody.Size = UDim2.new(0, 200, 0, 20)
  750. FarmBody.Font = Enum.Font.Fantasy
  751. FarmBody.Text = "Farm Body Toughness: OFF"
  752. FarmBody.TextWrapped = true
  753. FarmBody.TextSize = 16
  754.  
  755. FarmSpeed.Name = "FarmSpeed"
  756. FarmSpeed.Parent = FarmExpFrame
  757. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  758. FarmSpeed.TextColor3 = Color3.new(1, 1, 1)
  759. FarmSpeed.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  760. FarmSpeed.Position = UDim2.new(0, 5, 0, 90)
  761. FarmSpeed.Size = UDim2.new(0, 200, 0, 20)
  762. FarmSpeed.Font = Enum.Font.Fantasy
  763. FarmSpeed.Text = "Farm Movement Speed: OFF"
  764. FarmSpeed.TextWrapped = true
  765. FarmSpeed.TextSize = 16
  766.  
  767. FarmJump.Name = "FarmJump"
  768. FarmJump.Parent = FarmExpFrame
  769. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  770. FarmJump.TextColor3 = Color3.new(1, 1, 1)
  771. FarmJump.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  772. FarmJump.Position = UDim2.new(0, 5, 0, 115)
  773. FarmJump.Size = UDim2.new(0, 200, 0, 20)
  774. FarmJump.Font = Enum.Font.Fantasy
  775. FarmJump.Text = "Farm Jump Force: OFF"
  776. FarmJump.TextWrapped = true
  777. FarmJump.TextSize = 16
  778.  
  779. FarmPsychic.Name = "FarmPsychic"
  780. FarmPsychic.Parent = FarmExpFrame
  781. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  782. FarmPsychic.TextColor3 = Color3.new(1, 1, 1)
  783. FarmPsychic.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  784. FarmPsychic.Position = UDim2.new(0, 5, 0, 140)
  785. FarmPsychic.Size = UDim2.new(0, 200, 0, 20)
  786. FarmPsychic.Font = Enum.Font.Fantasy
  787. FarmPsychic.Text = "Farm Psychic Power: OFF"
  788. FarmPsychic.TextWrapped = true
  789. FarmPsychic.TextSize = 16
  790.  
  791. FarmBodyLabel.Name = "FarmBodyLabel"
  792. FarmBodyLabel.Parent = FarmExpFrame
  793. FarmBodyLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  794. FarmBodyLabel.TextColor3 = Color3.new(1, 1, 1)
  795. FarmBodyLabel.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  796. FarmBodyLabel.Position = UDim2.new(0, 213, 0, 65)
  797. FarmBodyLabel.Size = UDim2.new(0, 200, 0, 100)
  798. FarmBodyLabel.Font = Enum.Font.Fantasy
  799. FarmBodyLabel.Text = "Look at teleports and go to the best place you can go for your Body Toughness. You need 10Mil to go in the volcano but you need at least 50Mil before you can afk in there."
  800. FarmBodyLabel.TextSize = 16
  801. FarmBodyLabel.TextWrapped = true
  802. FarmBodyLabel.Visible = false
  803.  
  804. FarmSpeedLabel.Name = "FarmSpeedLabel"
  805. FarmSpeedLabel.Parent = FarmExpFrame
  806. FarmSpeedLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  807. FarmSpeedLabel.TextColor3 = Color3.new(1, 1, 1)
  808. FarmSpeedLabel.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  809. FarmSpeedLabel.Position = UDim2.new(0, 213, 0, 65)
  810. FarmSpeedLabel.Size = UDim2.new(0, 200, 0, 100)
  811. FarmSpeedLabel.Font = Enum.Font.Fantasy
  812. FarmSpeedLabel.Text = "Press 4 and equip the 100TON weight to get the maximum boost. If you still want to move around select the heaviest weight you can move around with but you wont get as much."
  813. FarmSpeedLabel.TextSize = 16
  814. FarmSpeedLabel.TextWrapped = true
  815. FarmSpeedLabel.Visible = false
  816.  
  817. DeathReturn.Name = "DeathReturn"
  818. DeathReturn.Parent = MainFrame
  819. DeathReturn.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  820. DeathReturn.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  821. DeathReturn.Position = UDim2.new(0, 210, 0, 5)
  822. DeathReturn.Size = UDim2.new(0, 160, 0, 20)
  823. DeathReturn.Font = Enum.Font.Fantasy
  824. DeathReturn.TextColor3 = Color3.new(1, 1, 1)
  825. DeathReturn.Text = "OnDeath Return: OFF"
  826. DeathReturn.TextSize = 17
  827. DeathReturn.TextWrapped = true
  828.  
  829. esptrack.Name = "esptrack"
  830. esptrack.Parent = MainFrame
  831. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  832. esptrack.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  833. esptrack.Position = UDim2.new(0, 375, 0, 5)
  834. esptrack.Size = UDim2.new(0, 35, 0, 20)
  835. esptrack.TextColor3 = Color3.new(1, 1, 1)
  836. esptrack.Font = Enum.Font.Fantasy
  837. esptrack.Text = "ESP"
  838. esptrack.TextSize = 16
  839. esptrack.TextWrapped = true
  840.  
  841. PlayerInfo.Name = "PlayerInfo"
  842. PlayerInfo.Parent = MainFrame
  843. PlayerInfo.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  844. PlayerInfo.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  845. PlayerInfo.Position = UDim2.new(0, 415, 0, 5)
  846. PlayerInfo.Size = UDim2.new(0, 85, 0, 20)
  847. PlayerInfo.TextColor3 = Color3.new(1, 1, 1)
  848. PlayerInfo.Font = Enum.Font.Fantasy
  849. PlayerInfo.Text = "Top Players"
  850. PlayerInfo.TextSize = 16
  851. PlayerInfo.TextWrapped = true
  852.  
  853. PlayerInfoFrame.Name = "PlayerInfoFrame"
  854. PlayerInfoFrame.Parent = MainFrame
  855. PlayerInfoFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  856. PlayerInfoFrame.BorderColor3 = Color3.new(0, 0, 0)
  857. PlayerInfoFrame.BackgroundTransparency = 0.2
  858. PlayerInfoFrame.Position = UDim2.new(0, 377.5, 0, 33)
  859. PlayerInfoFrame.Size = UDim2.new(0, 160, 0, 225)
  860. PlayerInfoFrame.Visible = false
  861.  
  862. ShowTopPlayers.Name = "ShowTopPlayers"
  863. ShowTopPlayers.Parent = PlayerInfoFrame
  864. ShowTopPlayers.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  865. ShowTopPlayers.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  866. ShowTopPlayers.Position = UDim2.new(0, 5, 0, 5)
  867. ShowTopPlayers.Size = UDim2.new(0, 150, 0, 20)
  868. ShowTopPlayers.TextColor3 = Color3.new(1, 1, 1)
  869. ShowTopPlayers.Font = Enum.Font.Fantasy
  870. ShowTopPlayers.Text = "Top Players in Server"
  871. ShowTopPlayers.TextSize = 16
  872. ShowTopPlayers.TextWrapped = true
  873.  
  874. PlayerInfoStatsFrame.Name = "PlayerInfoStatsFrame"
  875. PlayerInfoStatsFrame.Parent = MainGUI
  876. PlayerInfoStatsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  877. PlayerInfoStatsFrame.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  878. PlayerInfoStatsFrame.BackgroundTransparency = 0
  879. PlayerInfoStatsFrame.Position = UDim2.new(0.5, -427.5, 1, -120)
  880. PlayerInfoStatsFrame.Size = UDim2.new(0, 855, 0, 115)
  881. PlayerInfoStatsFrame.Active = true
  882. PlayerInfoStatsFrame.Selectable = true
  883. PlayerInfoStatsFrame.Draggable = true
  884. PlayerInfoStatsFrame.ZIndex = 8
  885. PlayerInfoStatsFrame.Visible = false
  886.  
  887. PlayerInfoStatsClose.Name = "PlayerInfoStatsClose"
  888. PlayerInfoStatsClose.Parent = PlayerInfoStatsFrame
  889. PlayerInfoStatsClose.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  890. PlayerInfoStatsClose.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  891. PlayerInfoStatsClose.Position = UDim2.new(0, 5, 0, 5)
  892. PlayerInfoStatsClose.Size = UDim2.new(0, 20, 0, 20)
  893. PlayerInfoStatsClose.Font = Enum.Font.Fantasy
  894. PlayerInfoStatsClose.Text = "X"
  895. PlayerInfoStatsClose.TextColor3 = Color3.new(1, 0, 0)
  896. PlayerInfoStatsClose.TextSize = 17
  897. PlayerInfoStatsClose.ZIndex = 8
  898. PlayerInfoStatsClose.TextScaled = true
  899. PlayerInfoStatsClose.TextWrapped = true
  900.  
  901. StatBestFistText1.Name = "StatBestFistText1"
  902. StatBestFistText1.Parent = PlayerInfoStatsFrame
  903. StatBestFistText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  904. StatBestFistText1.BackgroundTransparency = 1
  905. StatBestFistText1.Position = UDim2.new(0, 30, 0, 2)
  906. StatBestFistText1.Size = UDim2.new(0, 160, 0, 20)
  907. StatBestFistText1.TextColor3 = Color3.new(1, 1, 1)
  908. StatBestFistText1.Font = Enum.Font.Fantasy
  909. StatBestFistText1.Text = "Top Fist Player"
  910. StatBestFistText1.ZIndex = 8
  911. StatBestFistText1.TextSize = 13
  912.  
  913. ShowStatsFist1.Name = "ShowStatsFist1"
  914. ShowStatsFist1.Parent = PlayerInfoStatsFrame
  915. ShowStatsFist1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  916. ShowStatsFist1.BackgroundTransparency = 1
  917. ShowStatsFist1.Position = UDim2.new(0, 30, 0, 22)
  918. ShowStatsFist1.Size = UDim2.new(0, 50, 0, 90)
  919. ShowStatsFist1.Font = Enum.Font.Fantasy
  920. ShowStatsFist1.TextColor3 = Color3.new(1, 1, 0)
  921. ShowStatsFist1.Text = "Health:\nFist:\nBody:\nSpeed:\nJump:\nPsychic:"
  922. ShowStatsFist1.TextSize = 14
  923. ShowStatsFist1.ZIndex = 8
  924. ShowStatsFist1.TextXAlignment = Enum.TextXAlignment.Right
  925.  
  926. ShowStatsFist2.Name = "ShowStatsFist2"
  927. ShowStatsFist2.Parent = PlayerInfoStatsFrame
  928. ShowStatsFist2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  929. ShowStatsFist2.BackgroundTransparency = 1
  930. ShowStatsFist2.Position = UDim2.new(0, 85, 0, 22)
  931. ShowStatsFist2.Size = UDim2.new(0, 105, 0, 90)
  932. ShowStatsFist2.Font = Enum.Font.Fantasy
  933. ShowStatsFist2.TextColor3 = Color3.new(1, 1, 1)
  934. ShowStatsFist2.Text = "Stats"
  935. ShowStatsFist2.TextSize = 14
  936. ShowStatsFist2.ZIndex = 8
  937. ShowStatsFist2.TextXAlignment = Enum.TextXAlignment.Right
  938.  
  939. StatBestBodyText1.Name = "StatBestBodyText1"
  940. StatBestBodyText1.Parent = PlayerInfoStatsFrame
  941. StatBestBodyText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  942. StatBestBodyText1.BackgroundTransparency = 1
  943. StatBestBodyText1.Position = UDim2.new(0, 195, 0, 2)
  944. StatBestBodyText1.Size = UDim2.new(0, 160, 0, 20)
  945. StatBestBodyText1.TextColor3 = Color3.new(1, 1, 1)
  946. StatBestBodyText1.Font = Enum.Font.Fantasy
  947. StatBestBodyText1.Text = "Top Body Player"
  948. StatBestBodyText1.ZIndex = 8
  949. StatBestBodyText1.TextSize = 13
  950.  
  951. ShowStatsBody1.Name = "ShowStatsBody1"
  952. ShowStatsBody1.Parent = PlayerInfoStatsFrame
  953. ShowStatsBody1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  954. ShowStatsBody1.BackgroundTransparency = 1
  955. ShowStatsBody1.Position = UDim2.new(0, 195, 0, 22)
  956. ShowStatsBody1.Size = UDim2.new(0, 50, 0, 90)
  957. ShowStatsBody1.Font = Enum.Font.Fantasy
  958. ShowStatsBody1.TextColor3 = Color3.new(1, 1, 0)
  959. ShowStatsBody1.Text = "Health:\nFist:\nBody:\nSpeed:\nJump:\nPsychic:"
  960. ShowStatsBody1.TextSize = 14
  961. ShowStatsBody1.ZIndex = 8
  962. ShowStatsBody1.TextXAlignment = Enum.TextXAlignment.Right
  963.  
  964. ShowStatsBody2.Name = "ShowStatsBody2"
  965. ShowStatsBody2.Parent = PlayerInfoStatsFrame
  966. ShowStatsBody2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  967. ShowStatsBody2.BackgroundTransparency = 1
  968. ShowStatsBody2.Position = UDim2.new(0, 250, 0, 22)
  969. ShowStatsBody2.Size = UDim2.new(0, 105, 0, 90)
  970. ShowStatsBody2.Font = Enum.Font.Fantasy
  971. ShowStatsBody2.TextColor3 = Color3.new(1, 1, 1)
  972. ShowStatsBody2.Text = "Stats"
  973. ShowStatsBody2.TextSize = 14
  974. ShowStatsBody2.ZIndex = 8
  975. ShowStatsBody2.TextXAlignment = Enum.TextXAlignment.Right
  976.  
  977. StatBestSpeedText1.Name = "StatBestSpeedText1"
  978. StatBestSpeedText1.Parent = PlayerInfoStatsFrame
  979. StatBestSpeedText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  980. StatBestSpeedText1.BackgroundTransparency = 1
  981. StatBestSpeedText1.Position = UDim2.new(0, 360, 0, 2)
  982. StatBestSpeedText1.Size = UDim2.new(0, 160, 0, 20)
  983. StatBestSpeedText1.TextColor3 = Color3.new(1, 1, 1)
  984. StatBestSpeedText1.Font = Enum.Font.Fantasy
  985. StatBestSpeedText1.Text = "Top Speed Player"
  986. StatBestSpeedText1.ZIndex = 8
  987. StatBestSpeedText1.TextSize = 13
  988.  
  989. ShowStatsSpeed1.Name = "ShowStatsSpeed1"
  990. ShowStatsSpeed1.Parent = PlayerInfoStatsFrame
  991. ShowStatsSpeed1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  992. ShowStatsSpeed1.BackgroundTransparency = 1
  993. ShowStatsSpeed1.Position = UDim2.new(0, 360, 0, 22)
  994. ShowStatsSpeed1.Size = UDim2.new(0, 50, 0, 90)
  995. ShowStatsSpeed1.Font = Enum.Font.Fantasy
  996. ShowStatsSpeed1.TextColor3 = Color3.new(1, 1, 0)
  997. ShowStatsSpeed1.Text = "Health:\nFist:\nBody:\nSpeed:\nJump:\nPsychic:"
  998. ShowStatsSpeed1.TextSize = 14
  999. ShowStatsSpeed1.ZIndex = 8
  1000. ShowStatsSpeed1.TextXAlignment = Enum.TextXAlignment.Right
  1001.  
  1002. ShowStatsSpeed2.Name = "ShowStatsSpeed2"
  1003. ShowStatsSpeed2.Parent = PlayerInfoStatsFrame
  1004. ShowStatsSpeed2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1005. ShowStatsSpeed2.BackgroundTransparency = 1
  1006. ShowStatsSpeed2.Position = UDim2.new(0, 415, 0, 22)
  1007. ShowStatsSpeed2.Size = UDim2.new(0, 105, 0, 90)
  1008. ShowStatsSpeed2.Font = Enum.Font.Fantasy
  1009. ShowStatsSpeed2.TextColor3 = Color3.new(1, 1, 1)
  1010. ShowStatsSpeed2.Text = "Stats"
  1011. ShowStatsSpeed2.TextSize = 14
  1012. ShowStatsSpeed2.ZIndex = 8
  1013. ShowStatsSpeed2.TextXAlignment = Enum.TextXAlignment.Right
  1014.  
  1015. StatBestJumpText1.Name = "StatBestJumpText1"
  1016. StatBestJumpText1.Parent = PlayerInfoStatsFrame
  1017. StatBestJumpText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1018. StatBestJumpText1.BackgroundTransparency = 1
  1019. StatBestJumpText1.Position = UDim2.new(0, 525, 0, 2)
  1020. StatBestJumpText1.Size = UDim2.new(0, 160, 0, 20)
  1021. StatBestJumpText1.TextColor3 = Color3.new(1, 1, 1)
  1022. StatBestJumpText1.Font = Enum.Font.Fantasy
  1023. StatBestJumpText1.Text = "Top Jump Player"
  1024. StatBestJumpText1.ZIndex = 8
  1025. StatBestJumpText1.TextSize = 13
  1026.  
  1027. ShowStatsJump1.Name = "ShowStatsJump1"
  1028. ShowStatsJump1.Parent = PlayerInfoStatsFrame
  1029. ShowStatsJump1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1030. ShowStatsJump1.BackgroundTransparency = 1
  1031. ShowStatsJump1.Position = UDim2.new(0, 525, 0, 22)
  1032. ShowStatsJump1.Size = UDim2.new(0, 50, 0, 90)
  1033. ShowStatsJump1.Font = Enum.Font.Fantasy
  1034. ShowStatsJump1.TextColor3 = Color3.new(1, 1, 0)
  1035. ShowStatsJump1.Text = "Health:\nFist:\nBody:\nSpeed:\nJump:\nPsychic:"
  1036. ShowStatsJump1.TextSize = 14
  1037. ShowStatsJump1.ZIndex = 8
  1038. ShowStatsJump1.TextXAlignment = Enum.TextXAlignment.Right
  1039.  
  1040. ShowStatsJump2.Name = "ShowStatsJump2"
  1041. ShowStatsJump2.Parent = PlayerInfoStatsFrame
  1042. ShowStatsJump2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1043. ShowStatsJump2.BackgroundTransparency = 1
  1044. ShowStatsJump2.Position = UDim2.new(0, 580, 0, 22)
  1045. ShowStatsJump2.Size = UDim2.new(0, 105, 0, 90)
  1046. ShowStatsJump2.Font = Enum.Font.Fantasy
  1047. ShowStatsJump2.TextColor3 = Color3.new(1, 1, 1)
  1048. ShowStatsJump2.Text = "Stats"
  1049. ShowStatsJump2.TextSize = 14
  1050. ShowStatsJump2.ZIndex = 8
  1051. ShowStatsJump2.TextXAlignment = Enum.TextXAlignment.Right
  1052.  
  1053. StatBestPsychicText1.Name = "StatBestPsychicText1"
  1054. StatBestPsychicText1.Parent = PlayerInfoStatsFrame
  1055. StatBestPsychicText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1056. StatBestPsychicText1.BackgroundTransparency = 1
  1057. StatBestPsychicText1.Position = UDim2.new(0, 690, 0, 2)
  1058. StatBestPsychicText1.Size = UDim2.new(0, 160, 0, 20)
  1059. StatBestPsychicText1.TextColor3 = Color3.new(1, 1, 1)
  1060. StatBestPsychicText1.Font = Enum.Font.Fantasy
  1061. StatBestPsychicText1.Text = "Top Psychic Player"
  1062. StatBestPsychicText1.ZIndex = 8
  1063. StatBestPsychicText1.TextSize = 13
  1064.  
  1065. ShowStatsPsychic1.Name = "ShowStatsPsychic1"
  1066. ShowStatsPsychic1.Parent = PlayerInfoStatsFrame
  1067. ShowStatsPsychic1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1068. ShowStatsPsychic1.BackgroundTransparency = 1
  1069. ShowStatsPsychic1.Position = UDim2.new(0, 690, 0, 22)
  1070. ShowStatsPsychic1.Size = UDim2.new(0, 50, 0, 90)
  1071. ShowStatsPsychic1.Font = Enum.Font.Fantasy
  1072. ShowStatsPsychic1.TextColor3 = Color3.new(1, 1, 0)
  1073. ShowStatsPsychic1.Text = "Health:\nFist:\nBody:\nSpeed:\nJump:\nPsychic:"
  1074. ShowStatsPsychic1.TextSize = 14
  1075. ShowStatsPsychic1.ZIndex = 8
  1076. ShowStatsPsychic1.TextXAlignment = Enum.TextXAlignment.Right
  1077.  
  1078. ShowStatsPsychic2.Name = "ShowStatsPsychic2"
  1079. ShowStatsPsychic2.Parent = PlayerInfoStatsFrame
  1080. ShowStatsPsychic2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1081. ShowStatsPsychic2.BackgroundTransparency = 1
  1082. ShowStatsPsychic2.Position = UDim2.new(0, 745, 0, 22)
  1083. ShowStatsPsychic2.Size = UDim2.new(0, 105, 0, 90)
  1084. ShowStatsPsychic2.Font = Enum.Font.Fantasy
  1085. ShowStatsPsychic2.TextColor3 = Color3.new(1, 1, 1)
  1086. ShowStatsPsychic2.Text = "Stats"
  1087. ShowStatsPsychic2.TextSize = 14
  1088. ShowStatsPsychic2.ZIndex = 8
  1089. ShowStatsPsychic2.TextXAlignment = Enum.TextXAlignment.Right
  1090.  
  1091. Extras.Name = "Extras"
  1092. Extras.Parent = MainFrame
  1093. Extras.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1094. Extras.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1095. Extras.Position = UDim2.new(0, 505, 0, 5)
  1096. Extras.Size = UDim2.new(0, 50, 0, 20)
  1097. Extras.TextColor3 = Color3.new(1, 1, 1)
  1098. Extras.Font = Enum.Font.Fantasy
  1099. Extras.Text = "Extras"
  1100. Extras.TextSize = 16
  1101. Extras.TextWrapped = true
  1102.  
  1103. ExtrasFrame.Name = "ExtrasFrame"
  1104. ExtrasFrame.Parent = MainFrame
  1105. ExtrasFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1106. ExtrasFrame.BorderColor3 = Color3.new(0, 0, 0)
  1107. ExtrasFrame.BackgroundTransparency = 0.2
  1108. ExtrasFrame.Position = UDim2.new(0, 435, 0, 33)
  1109. ExtrasFrame.Size = UDim2.new(0, 160, 0, 213)
  1110. ExtrasFrame.Visible = false
  1111.  
  1112. AnnoyName.Name = "AnnoyName"
  1113. AnnoyName.Parent = ExtrasFrame
  1114. AnnoyName.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  1115. AnnoyName.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  1116. AnnoyName.Position = UDim2.new(0, 5, 0, 5)
  1117. AnnoyName.Size = UDim2.new(0, 150, 0, 20)
  1118. AnnoyName.TextColor3 = Color3.new(1, 1, 1)
  1119. AnnoyName.Font = Enum.Font.Fantasy
  1120. AnnoyName.Text = tostring(MyPlr.Name)
  1121. AnnoyName.TextSize = 14
  1122. AnnoyName.TextScaled = false
  1123. AnnoyName.TextWrapped = true
  1124.  
  1125. TptoPlayer.Name = "TptoPlayer"
  1126. TptoPlayer.Parent = ExtrasFrame
  1127. TptoPlayer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1128. TptoPlayer.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1129. TptoPlayer.Position = UDim2.new(0, 5, 0, 26)
  1130. TptoPlayer.Size = UDim2.new(0, 150, 0, 20)
  1131. TptoPlayer.TextColor3 = Color3.new(1, 1, 1)
  1132. TptoPlayer.Font = Enum.Font.Fantasy
  1133. TptoPlayer.Text = "TP to Player"
  1134. TptoPlayer.TextSize = 16
  1135. TptoPlayer.TextWrapped = true
  1136.  
  1137. AnnoyStart.Name = "AnnoyStart"
  1138. AnnoyStart.Parent = ExtrasFrame
  1139. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1140. AnnoyStart.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1141. AnnoyStart.Position = UDim2.new(0, 5, 0, 47)
  1142. AnnoyStart.Size = UDim2.new(0, 150, 0, 20)
  1143. AnnoyStart.TextColor3 = Color3.new(1, 1, 1)
  1144. AnnoyStart.Font = Enum.Font.Fantasy
  1145. AnnoyStart.Text = "TP Spam Player: OFF"
  1146. AnnoyStart.TextSize = 16
  1147. AnnoyStart.TextWrapped = true
  1148.  
  1149. PanicToggleLabel.Name = "PanicToggleLabel"
  1150. PanicToggleLabel.Parent = ExtrasFrame
  1151. PanicToggleLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1152. PanicToggleLabel.BorderSizePixel = 0
  1153. PanicToggleLabel.Position = UDim2.new(0, 5, 0, 77)
  1154. PanicToggleLabel.Size = UDim2.new(0, 125, 0, 20)
  1155. PanicToggleLabel.TextColor3 = Color3.new(1, 1, 1)
  1156. PanicToggleLabel.Font = Enum.Font.Fantasy
  1157. PanicToggleLabel.Text = "Panic KeyBind"
  1158. PanicToggleLabel.TextSize = 16
  1159. PanicToggleLabel.TextWrapped = true
  1160.  
  1161. PanicToggle.Name = "PanicToggle"
  1162. PanicToggle.Parent = ExtrasFrame
  1163. PanicToggle.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  1164. PanicToggle.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  1165. PanicToggle.Position = UDim2.new(0, 130, 0, 78)
  1166. PanicToggle.Size = UDim2.new(0, 25, 0, 18)
  1167. PanicToggle.TextColor3 = Color3.new(1, 1, 1)
  1168. PanicToggle.Font = Enum.Font.Fantasy
  1169. PanicToggle.Text = "y"
  1170. PanicToggle.TextSize = 16
  1171. PanicToggle.TextWrapped = true
  1172.  
  1173. NoClip.Name = "NoClip"
  1174. NoClip.Parent = ExtrasFrame
  1175. NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1176. NoClip.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1177. NoClip.Position = UDim2.new(0, 5, 0, 107)
  1178. NoClip.Size = UDim2.new(0, 150, 0, 20)
  1179. NoClip.Font = Enum.Font.Fantasy
  1180. NoClip.TextColor3 = Color3.new(1, 1, 1)
  1181. NoClip.Text = "NoClip Mode: OFF"
  1182. NoClip.TextSize = 16
  1183. NoClip.TextWrapped = true
  1184.  
  1185. farmbtsafetylabel.Name = "farmbtsafetylabel"
  1186. farmbtsafetylabel.Parent = ExtrasFrame
  1187. farmbtsafetylabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1188. farmbtsafetylabel.BorderSizePixel = 0
  1189. farmbtsafetylabel.Position = UDim2.new(0, 5, 0, 137)
  1190. farmbtsafetylabel.Size = UDim2.new(0, 120, 0, 20)
  1191. farmbtsafetylabel.TextColor3 = Color3.new(1, 1, 1)
  1192. farmbtsafetylabel.Font = Enum.Font.Fantasy
  1193. farmbtsafetylabel.Text = "Health [percent]"
  1194. farmbtsafetylabel.TextSize = 16
  1195. farmbtsafetylabel.TextWrapped = true
  1196.  
  1197. farmbtsafetylevel.Name = "farmbtsafetylevel"
  1198. farmbtsafetylevel.Parent = ExtrasFrame
  1199. farmbtsafetylevel.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  1200. farmbtsafetylevel.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  1201. farmbtsafetylevel.Position = UDim2.new(0, 125, 0, 138)
  1202. farmbtsafetylevel.Size = UDim2.new(0, 30, 0, 19)
  1203. farmbtsafetylevel.TextColor3 = Color3.new(1, 1, 1)
  1204. farmbtsafetylevel.Font = Enum.Font.Fantasy
  1205. farmbtsafetylevel.Text = "50"
  1206. farmbtsafetylevel.TextSize = 16
  1207. farmbtsafetylevel.TextWrapped = true
  1208.  
  1209. farmbtsafety.Name = "farmbtsafety"
  1210. farmbtsafety.Parent = ExtrasFrame
  1211. farmbtsafety.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1212. farmbtsafety.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1213. farmbtsafety.Position = UDim2.new(0, 5, 0, 158)
  1214. farmbtsafety.Size = UDim2.new(0, 150, 0, 20)
  1215. farmbtsafety.Font = Enum.Font.Fantasy
  1216. farmbtsafety.TextColor3 = Color3.new(1, 1, 1)
  1217. farmbtsafety.Text = "Safety Net: OFF"
  1218. farmbtsafety.TextSize = 16
  1219. farmbtsafety.TextWrapped = true
  1220.  
  1221. farmbtsafetyText1.Name = "farmbtsafetyText1"
  1222. farmbtsafetyText1.Parent = ExtrasFrame
  1223. farmbtsafetyText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1224. farmbtsafetyText1.TextColor3 = Color3.new(1, 1, 1)
  1225. farmbtsafetyText1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1226. farmbtsafetyText1.Position = UDim2.new(0, -155, 0, 141)
  1227. farmbtsafetyText1.Size = UDim2.new(0, 150, 0, 115)
  1228. farmbtsafetyText1.Font = Enum.Font.Fantasy
  1229. farmbtsafetyText1.Text = "Enable this to tp you to the safe zone when your health goes below the preset figure. Only useful if you can take more than 1 hit from your attacker."
  1230. farmbtsafetyText1.TextSize = 16
  1231. farmbtsafetyText1.TextWrapped = true
  1232. farmbtsafetyText1.Visible = false
  1233.  
  1234. ReJoinServer.Name = "ReJoinServer"
  1235. ReJoinServer.Parent = ExtrasFrame
  1236. ReJoinServer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1237. ReJoinServer.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1238. ReJoinServer.Position = UDim2.new(0, 5, 0, 188)
  1239. ReJoinServer.Size = UDim2.new(0, 150, 0, 20)
  1240. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  1241. ReJoinServer.Font = Enum.Font.Fantasy
  1242. ReJoinServer.Text = "ReJoin Server"
  1243. ReJoinServer.TextSize = 16
  1244. ReJoinServer.TextWrapped = true
  1245.  
  1246. InfoScreen.Name = "InfoScreen"
  1247. InfoScreen.Parent = MainFrame
  1248. InfoScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1249. InfoScreen.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1250. InfoScreen.Position = UDim2.new(0, 560, 0, 5)
  1251. InfoScreen.Size = UDim2.new(0, 40, 0, 20)
  1252. InfoScreen.BackgroundTransparency = 0
  1253. InfoScreen.Font = Enum.Font.Fantasy
  1254. InfoScreen.TextColor3 = Color3.new(1, 1, 1)
  1255. InfoScreen.Text = "Info"
  1256. InfoScreen.TextSize = 17
  1257. InfoScreen.TextWrapped = true
  1258.  
  1259. InfoText1.Name = "InfoText1"
  1260. InfoText1.Parent = MainFrame
  1261. InfoText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1262. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  1263. InfoText1.BackgroundTransparency = 0
  1264. InfoText1.Position = UDim2.new(0, 405, 0, 32)
  1265. InfoText1.Size = UDim2.new(0, 190, 0, 180)
  1266. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  1267. InfoText1.Font = Enum.Font.Fantasy
  1268. InfoText1.Text = "This Gui was created by LuckyMMB@V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\n\nCredits:\n-racist dolphin for the original ESP script which I edited and customised and whoever found the remotes for farming exp."
  1269. InfoText1.TextSize = 15
  1270. InfoText1.TextWrapped = true
  1271. InfoText1.Visible = false
  1272. InfoText1.ZIndex = 7
  1273. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  1274.  
  1275. PlayerName.Name = "PlayerName"
  1276. PlayerName.Parent = MainFrame
  1277. PlayerName.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1278. PlayerName.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  1279. PlayerName.Position = UDim2.new(0, 605, 0, 5)
  1280. PlayerName.Size = UDim2.new(0, 150, 0, 20)
  1281. PlayerName.Font = Enum.Font.Fantasy
  1282. PlayerName.TextColor3 = Color3.new(1, 1, 1)
  1283. PlayerName.Text = tostring(MyPlr.Name)
  1284. PlayerName.TextSize = 15
  1285. PlayerName.TextScaled = true
  1286. PlayerName.TextWrapped = false
  1287.  
  1288. StatsFrame.Name = "StatsFrame"
  1289. StatsFrame.Parent = MainFrame
  1290. StatsFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1291. StatsFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  1292. StatsFrame.BackgroundTransparency = 0
  1293. StatsFrame.Position = UDim2.new(0, 600, 0, 33)
  1294. StatsFrame.Size = UDim2.new(0, 161, 0, 90)
  1295. StatsFrame.Visible = false
  1296.  
  1297. ShowStats1.Name = "ShowStats1"
  1298. ShowStats1.Parent = StatsFrame
  1299. ShowStats1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1300. ShowStats1.BackgroundTransparency = 1
  1301. ShowStats1.Position = UDim2.new(0, 0, 0, 0)
  1302. ShowStats1.Size = UDim2.new(0, 50, 0, 90)
  1303. ShowStats1.Font = Enum.Font.Fantasy
  1304. ShowStats1.TextColor3 = Color3.new(1, 1, 1)
  1305. ShowStats1.Text = " "
  1306. ShowStats1.TextSize = 15
  1307. ShowStats1.TextXAlignment = Enum.TextXAlignment.Right
  1308.  
  1309. ShowStats2.Name = "ShowStats2"
  1310. ShowStats2.Parent = StatsFrame
  1311. ShowStats2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1312. ShowStats2.BackgroundTransparency = 1
  1313. ShowStats2.Position = UDim2.new(0, 55, 0, 0)
  1314. ShowStats2.Size = UDim2.new(0, 103, 0, 90)
  1315. ShowStats2.Font = Enum.Font.Fantasy
  1316. ShowStats2.TextColor3 = Color3.new(1, 1, 1)
  1317. ShowStats2.Text = "Stats"
  1318. ShowStats2.TextSize = 15
  1319. ShowStats2.TextXAlignment = Enum.TextXAlignment.Right
  1320.  
  1321. -- Close --
  1322.  
  1323. Open.MouseButton1Down:connect(function()
  1324. TopFrame.Visible = false
  1325. MainFrame.Visible = true
  1326. end)
  1327.  
  1328. Minimize.MouseButton1Down:connect(function()
  1329. TopFrame.Visible = true
  1330. MainFrame.Visible = false
  1331. end)
  1332.  
  1333. Close.MouseButton1Down:connect(function()
  1334. MainGUI:Destroy()
  1335. end)
  1336.  
  1337. -- Menus --
  1338.  
  1339. local Menus = {
  1340. [WayPoints] = WayPointsFrame;
  1341. [FarmExp] = FarmExpFrame;
  1342. [Extras] = ExtrasFrame;
  1343. }
  1344. for button,frame in pairs(Menus) do
  1345. button.MouseButton1Click:connect(function()
  1346. if frame.Visible then
  1347. frame.Visible = false
  1348. return
  1349. end
  1350. for k,v in pairs(Menus) do
  1351. v.Visible = v == frame
  1352. end
  1353. end)
  1354. end
  1355.  
  1356. FarmBody.MouseEnter:connect(function()
  1357. FarmBodyLabel.Visible = true
  1358. end)
  1359.  
  1360. FarmBody.MouseLeave:connect(function()
  1361. FarmBodyLabel.Visible = false
  1362. end)
  1363.  
  1364. FarmSpeed.MouseEnter:connect(function()
  1365. FarmSpeedLabel.Visible = true
  1366. end)
  1367.  
  1368. FarmSpeed.MouseLeave:connect(function()
  1369. FarmSpeedLabel.Visible = false
  1370. end)
  1371.  
  1372. FarmJump.MouseEnter:connect(function()
  1373. FarmSpeedLabel.Visible = true
  1374. end)
  1375.  
  1376. FarmJump.MouseLeave:connect(function()
  1377. FarmSpeedLabel.Visible = false
  1378. end)
  1379.  
  1380. farmbtsafety.MouseEnter:connect(function()
  1381. farmbtsafetyText1.Visible = true
  1382. end)
  1383.  
  1384. farmbtsafety.MouseLeave:connect(function()
  1385. farmbtsafetyText1.Visible = false
  1386. end)
  1387.  
  1388. InfoScreen.MouseEnter:connect(function()
  1389. InfoText1.Visible = true
  1390. end)
  1391.  
  1392. InfoScreen.MouseLeave:connect(function()
  1393. InfoText1.Visible = false
  1394. end)
  1395.  
  1396. c.MouseButton1Down:connect(function()
  1397. cf.Visible = false
  1398. end)
  1399.  
  1400. -- Round Number to decimal places and convert to letter value --
  1401.  
  1402. function round(num, numDecimalPlaces)
  1403. local mult = 10^(numDecimalPlaces or 0)
  1404. return math.floor(num * mult + 0.5) / mult
  1405. end
  1406.  
  1407. function converttoletter(num)
  1408. if num / 1e21 >=1 then
  1409. newnum = num / 1e21
  1410. return round(newnum, 6).. "Sx"
  1411. elseif num / 1e18 >=1 then
  1412. newnum = num / 1e18
  1413. return round(newnum, 6).. "Qi"
  1414. elseif num / 1e15 >=1 then
  1415. newnum = num / 1e15
  1416. return round(newnum, 6).. "Qa"
  1417. elseif num / 1e12 >=1 then
  1418. newnum = num / 1e12
  1419. return round(newnum, 6).. "T"
  1420. elseif num / 1e09 >=1 then
  1421. newnum = num / 1e09
  1422. return round(newnum, 6).. "B"
  1423. elseif num / 1e06 >=1 then
  1424. newnum = num / 1e06
  1425. return round(newnum, 6).. "M"
  1426. elseif num / 1e03 >=1 then
  1427. newnum = num / 1e03
  1428. return round(newnum, 6).. "K"
  1429. else return num
  1430. end
  1431. end
  1432.  
  1433. --- NoClip ---
  1434.  
  1435. NoClip.MouseButton1Down:connect(function()
  1436. noclip = not noclip
  1437. if noclip then
  1438. NoClip.Text = "NoClip Mode: ON"
  1439. NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1440. else
  1441. NoClip.Text = "NoClip Mode: OFF"
  1442. NoClip.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1443. end
  1444. end)
  1445. game:GetService('RunService').Stepped:connect(function()
  1446. if noclip then
  1447. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1448. end
  1449. end)
  1450.  
  1451. --- Farm BT Safety ---
  1452.  
  1453. farmbtsafety.MouseButton1Down:connect(function()
  1454. farmbtsafetyactive = not farmbtsafetyactive
  1455. if farmbtsafetyactive then
  1456. farmbtsafety.Text = "Safety Net: ON"
  1457. farmbtsafety.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1458. else
  1459. farmbtsafety.Text = "Safety Net: OFF"
  1460. farmbtsafety.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1461. end
  1462. end)
  1463.  
  1464. spawn(function()
  1465. while true do
  1466. if farmbtsafetyactive then
  1467. while farmbtsafetyactive do
  1468. local FindHum = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  1469. local currenthealth = tonumber(string.format("%.0f", FindHum.Health))
  1470. local minhealth = tonumber(string.format("%.0f", FindHum.MaxHealth))*tonumber(farmbtsafetylevel.Text)/100
  1471. -- print("Current Health: " ..tostring(currenthealth).. ". Min Health: " ..tostring(minhealth))
  1472. if currenthealth <= minhealth then
  1473. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1474. end
  1475. wait(0.2)
  1476. end
  1477. end
  1478. wait(0.5)
  1479. end
  1480. end)
  1481.  
  1482. -- Show Location --
  1483.  
  1484. local curlocation = coroutine.wrap(function()
  1485. while true do
  1486. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  1487. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  1488. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  1489. ShowLocation.Text = "Coords: "..LocationX..", "..LocationY..", "..LocationZ
  1490. wait(0.5)
  1491. end
  1492. end)
  1493.  
  1494. curlocation()
  1495.  
  1496. -- Set Locations --
  1497.  
  1498. SetLocation.MouseButton1Down:connect(function()
  1499. function round(num, numDecimalPlaces)
  1500. local mult = 10^(numDecimalPlaces or 0)
  1501. return math.floor(num * mult + 0.5) / mult
  1502. end
  1503. setlocationx = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  1504. setlocationy = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  1505. setlocationz = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  1506. print("Set Custom Location: "..setlocationx..", "..setlocationy..", "..setlocationz)
  1507. SetLocation.Text = setlocationx..","..setlocationy..","..setlocationz
  1508. CustomLocationSet = true
  1509. end)
  1510.  
  1511. --- TP to custom location ---
  1512.  
  1513. TPLocation.MouseButton1Down:connect(function()
  1514. if CustomLocationSet == true then
  1515. workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = CFrame.new(setlocationx, setlocationy, setlocationz)
  1516. WayPointsFrame.Visible = false
  1517. end
  1518. end)
  1519.  
  1520. Location1.MouseButton1Click:connect(function()
  1521. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1522. WayPointsFrame.Visible = false
  1523. end)
  1524.  
  1525. Location2.MouseButton1Click:connect(function()
  1526. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(409, 271, 978)
  1527. WayPointsFrame.Visible = false
  1528. end)
  1529.  
  1530. LocationFS1B.MouseButton1Click:connect(function()
  1531. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1176, 4789, -2293)
  1532. WayPointsFrame.Visible = false
  1533. end)
  1534.  
  1535. LocationFS10T.MouseButton1Click:connect(function()
  1536. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-369, 15735, -9)
  1537. WayPointsFrame.Visible = false
  1538. end)
  1539.  
  1540. LocationFS100B.MouseButton1Click:connect(function()
  1541. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1381, 9274, 1647)
  1542. WayPointsFrame.Visible = false
  1543. end)
  1544.  
  1545. Location7.MouseButton1Click:connect(function()
  1546. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2279, 1944, 1053)
  1547. WayPointsFrame.Visible = false
  1548. end)
  1549.  
  1550. Location3.MouseButton1Click:connect(function()
  1551. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(365, 249, -445)
  1552. settplocation = "BT100Area"
  1553. WayPointsFrame.Visible = false
  1554. end)
  1555.  
  1556. Location4.MouseButton1Click:connect(function()
  1557. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(349, 263, -490)
  1558. settplocation = "BT10KArea"
  1559. WayPointsFrame.Visible = false
  1560. end)
  1561.  
  1562. Location5.MouseButton1Click:connect(function()
  1563. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1640, 258, 2244)
  1564. settplocation = "BT100KArea"
  1565. WayPointsFrame.Visible = false
  1566. end)
  1567.  
  1568. Location6.MouseButton1Click:connect(function()
  1569. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2307, 976, 1068)
  1570. settplocation = "BT1MArea"
  1571. WayPointsFrame.Visible = false
  1572. end)
  1573.  
  1574. Location8.MouseButton1Click:connect(function()
  1575. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2024, 714, -1860)
  1576. settplocation = "BT10MArea"
  1577. WayPointsFrame.Visible = false
  1578. end)
  1579.  
  1580. LocationBT1B.MouseButton1Click:connect(function()
  1581. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-254, 286, 980)
  1582. settplocation = "BT1BArea"
  1583. WayPointsFrame.Visible = false
  1584. end)
  1585.  
  1586. LocationBT100B.MouseButton1Click:connect(function()
  1587. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-271, 279, 991)
  1588. settplocation = "BT100BArea"
  1589. WayPointsFrame.Visible = false
  1590. end)
  1591.  
  1592. LocationBT10T.MouseButton1Click:connect(function()
  1593. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-279, 279, 1007)
  1594. settplocation = "BT10TArea"
  1595. WayPointsFrame.Visible = false
  1596. end)
  1597.  
  1598. LocationPP1M.MouseButton1Click:connect(function()
  1599. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2527, 5486, -532)
  1600. settplocation = "PP1MArea"
  1601. WayPointsFrame.Visible = false
  1602. end)
  1603.  
  1604. LocationPP1B.MouseButton1Click:connect(function()
  1605. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2560, 5500, -439)
  1606. settplocation = "PP1BArea"
  1607. WayPointsFrame.Visible = false
  1608. end)
  1609.  
  1610. LocationPP1T.MouseButton1Click:connect(function()
  1611. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2582, 5516, -504)
  1612. settplocation = "PP1TArea"
  1613. WayPointsFrame.Visible = false
  1614. end)
  1615.  
  1616. LocationPP1Qa.MouseButton1Click:connect(function()
  1617. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2544, 5412, -495)
  1618. settplocation = "PP1QaArea"
  1619. WayPointsFrame.Visible = false
  1620. end)
  1621.  
  1622. -- ESP Stuff --
  1623.  
  1624. Run:BindToRenderStep("UpdateESP", Enum.RenderPriority.Character.Value, function()
  1625. for _, v in next, Plrs:GetPlayers() do
  1626. UpdateESP(v)
  1627. end
  1628. end)
  1629.  
  1630. -- Farm Exp --
  1631.  
  1632. FarmAll.MouseButton1Click:Connect(function()
  1633. if farmallactive ~= true then
  1634. farmallactive = true
  1635. farmfistactive = true
  1636. farmbodyactive = true
  1637. farmspeedactive = true
  1638. farmpsychicactive = true
  1639. farmjumpactive = true
  1640. FarmAll.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1641. FarmAll.Text = "Farm All: ON"
  1642. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1643. else
  1644. farmallactive = false
  1645. farmfistactive = false
  1646. farmbodyactive = false
  1647. farmspeedactive = false
  1648. farmpsychicactive = false
  1649. farmjumpactive = false
  1650. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1651. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1652. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1653. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1654. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1655. FarmAll.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1656. FarmAll.Text = "Farm All: OFF"
  1657. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1658. end
  1659. end)
  1660.  
  1661. FarmFist.MouseButton1Click:Connect(function()
  1662. if farmfistactive ~= true then
  1663. farmfistactive = true
  1664. FarmFist.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1665. FarmFist.Text = "Farm Fist Strength: ON"
  1666. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1667. else
  1668. farmfistactive = false
  1669. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1670. FarmFist.Text = "Farm Fist Strength: OFF"
  1671. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1672. end
  1673. end)
  1674.  
  1675. FarmBody.MouseButton1Click:Connect(function()
  1676. if farmbodyactive ~= true then
  1677. farmbodyactive = true
  1678. FarmBody.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1679. FarmBody.Text = "Farm Body Strength: ON"
  1680. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1681. else
  1682. farmbodyactive = false
  1683. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1684. FarmBody.Text = "Farm Body Strength: OFF"
  1685. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1686. end
  1687. end)
  1688.  
  1689. FarmSpeed.MouseButton1Click:Connect(function()
  1690. if farmspeedactive ~= true then
  1691. farmspeedactive = true
  1692. FarmSpeed.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1693. FarmSpeed.Text = "Farm Speed Strength: ON"
  1694. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1695. else
  1696. farmspeedactive = false
  1697. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1698. FarmSpeed.Text = "Farm Speed Strength: OFF"
  1699. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1700. end
  1701. end)
  1702.  
  1703. FarmJump.MouseButton1Click:Connect(function()
  1704. if farmjumpactive ~= true then
  1705. farmjumpactive = true
  1706. FarmJump.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1707. FarmJump.Text = "Farm Jump Strength: ON"
  1708. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1709. else
  1710. farmjumpactive = false
  1711. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1712. FarmJump.Text = "Farm Jump Strength: OFF"
  1713. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1714. end
  1715. end)
  1716.  
  1717. FarmPsychic.MouseButton1Click:Connect(function()
  1718. if farmpsychicactive ~= true then
  1719. farmpsychicactive = true
  1720. FarmPsychic.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1721. FarmPsychic.Text = "Farm Psychic Strength: ON"
  1722. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1723. else
  1724. farmpsychicactive = false
  1725. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1726. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1727. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1728. end
  1729. end)
  1730.  
  1731. spawn(function()
  1732. while true do
  1733. if farmfistactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1734. if tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 10e12 then
  1735. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-369, 15735, -9)
  1736. fistarguments = {"+FS6"}
  1737. farmpsychicactive = false
  1738. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1739. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1740. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 100e09 then
  1741. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1381, 9274, 1647)
  1742. fistarguments = {"+FS5"}
  1743. farmpsychicactive = false
  1744. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1745. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1746. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 1e09 then
  1747. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1176, 4789, -2293)
  1748. fistarguments = {"+FS4"}
  1749. farmpsychicactive = false
  1750. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1751. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1752. else
  1753. fistarguments = {"+FS3", "+FS2", "+FS1"}
  1754. end
  1755. while farmfistactive do
  1756. game:GetService('RunService').Stepped:wait()
  1757. for i,v in pairs(fistarguments) do
  1758. game.ReplicatedStorage.RemoteEvent:FireServer({[1] = v})
  1759. end
  1760. end
  1761. end
  1762. wait(1)
  1763. end
  1764. end)
  1765.  
  1766. spawn(function()
  1767. while true do
  1768. if farmbodyactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1769. while farmbodyactive do
  1770. local bodyarguments = {"+BT5", "+BT4", "+BT3", "+BT2", "+BT1"}
  1771. local event = game.ReplicatedStorage.RemoteEvent
  1772. for i,v in pairs(bodyarguments) do
  1773. event:FireServer({[1] = v})
  1774. wait()
  1775. end
  1776. wait()
  1777. end
  1778. end
  1779. wait(1)
  1780. end
  1781. end)
  1782.  
  1783. spawn(function()
  1784. while true do
  1785. if farmspeedactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1786. while farmspeedactive do
  1787. local speedarguments = {"+MS5", "+MS4", "+MS3", "+MS2", "+MS1"}
  1788. local event = game.ReplicatedStorage.RemoteEvent
  1789. for i,v in pairs(speedarguments) do
  1790. event:FireServer({[1] = v})
  1791. wait()
  1792. end
  1793. wait()
  1794. end
  1795. end
  1796. wait(1)
  1797. end
  1798. end)
  1799.  
  1800. spawn(function()
  1801. while true do
  1802. if farmjumpactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1803. while farmjumpactive do
  1804. local jumparguments = {"+JF5", "+JF4", "+JF3", "+JF2", "+JF1"}
  1805. local event = game.ReplicatedStorage.RemoteEvent
  1806. for i,v in pairs(jumparguments) do
  1807. event:FireServer({[1] = v})
  1808. wait()
  1809. end
  1810. wait()
  1811. end
  1812. end
  1813. wait(1)
  1814. end
  1815. end)
  1816.  
  1817. spawn(function()
  1818. while true do
  1819. if farmpsychicactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1820. if tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e15 then
  1821. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2544, 5412, -495)
  1822. psychicarguments = {"+PP6"}
  1823. farmfistactive = false
  1824. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1825. FarmFist.Text = "Farm Fist Strength: OFF"
  1826. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e12 then
  1827. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2582, 5516, -504)
  1828. psychicarguments = {"+PP5"}
  1829. farmfistactive = false
  1830. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1831. FarmFist.Text = "Farm Fist Strength: OFF"
  1832. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e09 then
  1833. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2560, 5500, -439)
  1834. psychicarguments = {"+PP4"}
  1835. farmfistactive = false
  1836. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1837. FarmFist.Text = "Farm Fist Strength: OFF"
  1838. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e06 then
  1839. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2527, 5486, -532)
  1840. psychicarguments = {"+PP3"}
  1841. farmfistactive = false
  1842. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1843. FarmFist.Text = "Farm Fist Strength: OFF"
  1844. else
  1845. psychicarguments = {"+PP2", "+PP1"}
  1846. end
  1847. while farmpsychicactive do
  1848. game:GetService('RunService').Stepped:wait()
  1849. for i,v in pairs(psychicarguments) do
  1850. game.ReplicatedStorage.RemoteEvent:FireServer({[1] = v})
  1851. end
  1852. end
  1853. end
  1854. wait(1)
  1855. end
  1856. end)
  1857.  
  1858. -- Return to position on Death --
  1859.  
  1860. DeathReturn.MouseButton1Click:Connect(function()
  1861. if deathreturnactive ~= true then
  1862. deathreturnactive = true
  1863. DeathReturn.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1864. DeathReturn.Text = "OnDeath Return: ON"
  1865. else
  1866. deathreturnactive = false
  1867. DeathReturn.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1868. DeathReturn.Text = "OnDeath Return: OFF"
  1869. end
  1870. end)
  1871.  
  1872. spawn(function()
  1873. while true do
  1874. if deathreturnactive then
  1875. player = game:GetService("Players").LocalPlayer
  1876. player.Character.Humanoid.Died:connect(function()
  1877. playerdied = true
  1878. end)
  1879. end
  1880. if not playerdied then
  1881. lastlocationx = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x
  1882. lastlocationy = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y
  1883. lastlocationz = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z
  1884. SavePosition.Text = "Last Place: " ..lastlocationx.. "," ..lastlocationy.. "," ..lastlocationz
  1885. --print(tostring(SavePosition.Text))
  1886. wait(0.5)
  1887. end
  1888. if playerdied then
  1889. --print("Player " ..tostring(game.Players.LocalPlayer.Name).. " Died")
  1890. --print(tostring(SavePosition.Text))
  1891. wait(5)
  1892. game:GetService("ReplicatedStorage").RemoteEvent:FireServer({[1] = "Respawn"})
  1893. wait(1)
  1894. game.Lighting.Blur.Enabled = false
  1895. game.Players.LocalPlayer.PlayerGui.IntroGui.Enabled = false
  1896. game.Players.LocalPlayer.PlayerGui.ScreenGui.Enabled = true
  1897. wait(4)
  1898. --print("screengui disabled")
  1899. repeat wait(0.1) until game.Players.LocalPlayer.Character.Humanoid
  1900. --print("Teleporting back to " ..tostring(SavePosition.Text))
  1901. if deathreturnactive then
  1902. local FindHum = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  1903. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(lastlocationx, lastlocationy, lastlocationz)
  1904. end
  1905. playerdied = false
  1906. end
  1907. wait(1)
  1908. end
  1909. end)
  1910.  
  1911. -- Annoy Player --
  1912.  
  1913. AnnoyStart.MouseButton1Click:Connect(function()
  1914. if annoyplayeractive ~= true then
  1915. annoyplayeractive = true
  1916. AnnoyStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1917. AnnoyStart.Text = "TP Spam Player: ON"
  1918. else
  1919. annoyplayeractive = false
  1920. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1921. AnnoyStart.Text = "TP Spam Player: OFF"
  1922. end
  1923. end)
  1924.  
  1925. spawn(function()
  1926. while true do
  1927. wait(0.5)
  1928. if annoyplayeractive then
  1929. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1930. if v.Name:lower():find(AnnoyName.Text:lower()) then
  1931. player = game.Players.LocalPlayer.Character
  1932. local startpos = player.HumanoidRootPart.CFrame
  1933. v.Character.Humanoid.Died:connect(function()
  1934. annoyplayeractive = false
  1935. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1936. AnnoyStart.Text = "TP Spam Player: OFF"
  1937. end)
  1938. player.Humanoid.Died:connect(function()
  1939. annoyplayeractive = false
  1940. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1941. AnnoyStart.Text = "TP Spam Player: OFF"
  1942. end)
  1943. while annoyplayeractive == true do
  1944. player.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  1945. wait(.005)
  1946. end
  1947. player.HumanoidRootPart.CFrame = startpos
  1948. end
  1949. end
  1950. end
  1951. end
  1952. end)
  1953.  
  1954. TptoPlayer.MouseButton1Click:Connect(function()
  1955. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1956. if v.Name:lower():find(AnnoyName.Text:lower()) then
  1957. if v.Name ~= tostring(MyPlr.Name) then
  1958. player = game.Players.LocalPlayer.Character
  1959. player.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(3, 0, 3)
  1960. end
  1961. end
  1962. end
  1963. end)
  1964.  
  1965. mouse.KeyDown:connect(function(key)
  1966. if key == tostring(PanicToggle.Text) then
  1967. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1968. end
  1969. end)
  1970.  
  1971. -- ESP --
  1972.  
  1973. esptrack.MouseButton1Click:connect(function()
  1974. ESPEnabled = not ESPEnabled
  1975. if ESPEnabled then
  1976. esptrack.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1977. for _, v in next, Plrs:GetPlayers() do
  1978. if v ~= MyPlr then
  1979. if CharAddedEvent[v.Name] == nil then
  1980. CharAddedEvent[v.Name] = v.CharacterAdded:connect(function(Char)
  1981. if ESPEnabled then
  1982. RemoveESP(v)
  1983. CreateESP(v)
  1984. end
  1985. repeat wait() until Char:FindFirstChild("HumanoidRootPart")
  1986. end)
  1987. end
  1988. RemoveESP(v)
  1989. CreateESP(v)
  1990. end
  1991. end
  1992. else
  1993. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1994. for _, v in next, Plrs:GetPlayers() do
  1995. RemoveESP(v)
  1996. end
  1997. end
  1998. end)
  1999.  
  2000. -- Server Player Stats --
  2001.  
  2002. PlayerInfo.MouseButton1Click:connect(function()
  2003. if not showtopplayersactive then
  2004. showtopplayersactive = true
  2005. showtopplayersfistactive = true
  2006. showtopplayersbodyactive = true
  2007. showtopplayersspeedactive = true
  2008. showtopplayersjumpactive = true
  2009. showtopplayerspsychicactive = true
  2010. PlayerInfoStatsFrame.Visible = true
  2011. else
  2012. showtopplayersactive = false
  2013. PlayerInfoStatsFrame.Visible = false
  2014. showtopplayersfistactive = false
  2015. showtopplayersbodyactive = false
  2016. showtopplayersspeedactive = false
  2017. showtopplayersjumpactive = false
  2018. showtopplayerspsychicactive = false
  2019. end
  2020. end)
  2021.  
  2022. PlayerInfoStatsClose.MouseButton1Click:connect(function()
  2023. showtopplayersactive = false
  2024. PlayerInfoStatsFrame.Visible = false
  2025. showtopplayersfistactive = false
  2026. showtopplayersbodyactive = false
  2027. showtopplayersspeedactive = false
  2028. showtopplayersjumpactive = false
  2029. showtopplayerspsychicactive = false
  2030. end)
  2031.  
  2032. spawn(function()
  2033. while true do
  2034. if showtopplayersfistactive then
  2035. BestPlayerFist = 1
  2036. PlayerFistName = false
  2037. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2038. local PlayerFist = tonumber(game.Players[v.Name].PrivateStats.FistStrength.Value)
  2039. if PlayerFist > tonumber(BestPlayerFist) then
  2040. BestPlayerFist = PlayerFist
  2041. PlayerFistName = tostring(v.Name)
  2042. end
  2043. end
  2044. StatBestFistText1.Text = "Fist: " ..tostring(PlayerFistName)
  2045. local fistplrStatus = game.Players[PlayerFistName].leaderstats.Status
  2046. if fistplrStatus.Value == "Criminal" then
  2047. StatBestFistText1.TextColor3 = Color3.new(1, 0.1, 1)
  2048. elseif fistplrStatus.Value == "Lawbreaker" then
  2049. StatBestFistText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  2050. elseif fistplrStatus.Value == "Guardian" then
  2051. StatBestFistText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  2052. elseif fistplrStatus.Value == "Protector" then
  2053. StatBestFistText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  2054. elseif fistplrStatus.Value == "Supervillain" then
  2055. StatBestFistText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  2056. elseif fistplrStatus.Value == "Superhero" then
  2057. StatBestFistText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  2058. else
  2059. StatBestFistText1.TextColor3 = Color3.new(1, 1, 1)
  2060. end
  2061. local FindHum = game.Players[PlayerFistName].Character.Humanoid
  2062. local FistPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  2063. local FistPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.FistStrength.Value))
  2064. local FistPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.BodyToughness.Value))
  2065. local FistPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.MovementSpeed.Value))
  2066. local FistPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.JumpForce.Value))
  2067. local FistPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.PsychicPower.Value))
  2068. ShowStatsFist2.Text = tostring(FistPlayerHealth.. "\n" ..FistPlayerFist.. "\n" ..FistPlayerBody.. "\n" ..FistPlayerSpeed.. "\n" ..FistPlayerJump.. "\n" ..FistPlayerPsychic)
  2069. end
  2070. wait(0.3)
  2071. end
  2072. end)
  2073.  
  2074. spawn(function()
  2075. while true do
  2076. if showtopplayersbodyactive then
  2077. BestPlayerBody = 1
  2078. PlayerBodyName = false
  2079. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2080. local PlayerBody = tonumber(game.Players[v.Name].PrivateStats.BodyToughness.Value)
  2081. if PlayerBody > tonumber(BestPlayerBody) then
  2082. BestPlayerBody = PlayerBody
  2083. PlayerBodyName = tostring(v.Name)
  2084. end
  2085. end
  2086. StatBestBodyText1.Text = "Body: " ..tostring(PlayerBodyName)
  2087. local bodyplrStatus = game.Players[PlayerBodyName].leaderstats.Status
  2088. if bodyplrStatus.Value == "Criminal" then
  2089. StatBestBodyText1.TextColor3 = Color3.new(1, 0.1, 1)
  2090. elseif bodyplrStatus.Value == "Lawbreaker" then
  2091. StatBestBodyText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  2092. elseif bodyplrStatus.Value == "Guardian" then
  2093. StatBestBodyText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  2094. elseif bodyplrStatus.Value == "Protector" then
  2095. StatBestBodyText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  2096. elseif bodyplrStatus.Value == "Supervillain" then
  2097. StatBestBodyText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  2098. elseif bodyplrStatus.Value == "Superhero" then
  2099. StatBestBodyText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  2100. else
  2101. StatBestBodyText1.TextColor3 = Color3.new(1, 1, 1)
  2102. end
  2103. local FindHum = game.Players[PlayerBodyName].Character.Humanoid
  2104. local BodyPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  2105. local BodyPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.FistStrength.Value))
  2106. local BodyPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.BodyToughness.Value))
  2107. local BodyPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.MovementSpeed.Value))
  2108. local BodyPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.JumpForce.Value))
  2109. local BodyPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.PsychicPower.Value))
  2110. ShowStatsBody2.Text = tostring(BodyPlayerHealth.. "\n" ..BodyPlayerFist.. "\n" ..BodyPlayerBody.. "\n" ..BodyPlayerSpeed.. "\n" ..BodyPlayerJump.. "\n" ..BodyPlayerPsychic)
  2111. end
  2112. wait(0.3)
  2113. end
  2114. end)
  2115.  
  2116. spawn(function()
  2117. while true do
  2118. if showtopplayersspeedactive then
  2119. BestPlayerSpeed = 1
  2120. PlayerSpeedName = false
  2121. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2122. local PlayerSpeed = tonumber(game.Players[v.Name].PrivateStats.MovementSpeed.Value)
  2123. if PlayerSpeed > tonumber(BestPlayerSpeed) then
  2124. BestPlayerSpeed = PlayerSpeed
  2125. PlayerSpeedName = tostring(v.Name)
  2126. end
  2127. end
  2128. StatBestSpeedText1.Text = "Speed: " ..tostring(PlayerSpeedName)
  2129. local speedplrStatus = game.Players[PlayerSpeedName].leaderstats.Status
  2130. if speedplrStatus.Value == "Criminal" then
  2131. StatBestSpeedText1.TextColor3 = Color3.new(1, 0.1, 1)
  2132. elseif speedplrStatus.Value == "Lawbreaker" then
  2133. StatBestSpeedText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  2134. elseif speedplrStatus.Value == "Guardian" then
  2135. StatBestSpeedText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  2136. elseif speedplrStatus.Value == "Protector" then
  2137. StatBestSpeedText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  2138. elseif speedplrStatus.Value == "Supervillain" then
  2139. StatBestSpeedText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  2140. elseif speedplrStatus.Value == "Superhero" then
  2141. StatBestSpeedText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  2142. else
  2143. StatBestSpeedText1.TextColor3 = Color3.new(1, 1, 1)
  2144. end
  2145. local FindHum = game.Players[PlayerSpeedName].Character.Humanoid
  2146. local SpeedPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  2147. local SpeedPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.FistStrength.Value))
  2148. local SpeedPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.BodyToughness.Value))
  2149. local SpeedPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.MovementSpeed.Value))
  2150. local SpeedPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.JumpForce.Value))
  2151. local SpeedPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.PsychicPower.Value))
  2152. ShowStatsSpeed2.Text = tostring(SpeedPlayerHealth.. "\n" ..SpeedPlayerFist.. "\n" ..SpeedPlayerBody.. "\n" ..SpeedPlayerSpeed.. "\n" ..SpeedPlayerJump.. "\n" ..SpeedPlayerPsychic)
  2153. end
  2154. wait(0.3)
  2155. end
  2156. end)
  2157.  
  2158. spawn(function()
  2159. while true do
  2160. if showtopplayersjumpactive then
  2161. BestPlayerJump = 1
  2162. PlayerJumpName = false
  2163. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2164. local PlayerJump = tonumber(game.Players[v.Name].PrivateStats.JumpForce.Value)
  2165. if PlayerJump > tonumber(BestPlayerJump) then
  2166. BestPlayerJump = PlayerJump
  2167. PlayerJumpName = tostring(v.Name)
  2168. end
  2169. end
  2170. StatBestJumpText1.Text = "Jump: " ..tostring(PlayerJumpName)
  2171. local JumpplrStatus = game.Players[PlayerJumpName].leaderstats.Status
  2172. if JumpplrStatus.Value == "Criminal" then
  2173. StatBestJumpText1.TextColor3 = Color3.new(1, 0.1, 1)
  2174. elseif JumpplrStatus.Value == "Lawbreaker" then
  2175. StatBestJumpText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  2176. elseif JumpplrStatus.Value == "Guardian" then
  2177. StatBestJumpText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  2178. elseif JumpplrStatus.Value == "Protector" then
  2179. StatBestJumpText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  2180. elseif JumpplrStatus.Value == "Supervillain" then
  2181. StatBestJumpText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  2182. elseif JumpplrStatus.Value == "Superhero" then
  2183. StatBestJumpText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  2184. else
  2185. StatBestJumpText1.TextColor3 = Color3.new(1, 1, 1)
  2186. end
  2187. local FindHum = game.Players[PlayerJumpName].Character.Humanoid
  2188. local JumpPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  2189. local JumpPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.FistStrength.Value))
  2190. local JumpPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.BodyToughness.Value))
  2191. local JumpPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.MovementSpeed.Value))
  2192. local JumpPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.JumpForce.Value))
  2193. local JumpPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.PsychicPower.Value))
  2194. ShowStatsJump2.Text = tostring(JumpPlayerHealth.. "\n" ..JumpPlayerFist.. "\n" ..JumpPlayerBody.. "\n" ..JumpPlayerSpeed.. "\n" ..JumpPlayerJump.. "\n" ..JumpPlayerPsychic)
  2195. end
  2196. wait(0.3)
  2197. end
  2198. end)
  2199.  
  2200. spawn(function()
  2201. while true do
  2202. if showtopplayerspsychicactive then
  2203. BestPlayerPsychic = 1
  2204. PlayerPsychicName = false
  2205. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2206. local PlayerPsychic = tonumber(game.Players[v.Name].PrivateStats.PsychicPower.Value)
  2207. if PlayerPsychic > tonumber(BestPlayerPsychic) then
  2208. BestPlayerPsychic = PlayerPsychic
  2209. PlayerPsychicName = tostring(v.Name)
  2210. end
  2211. end
  2212. StatBestPsychicText1.Text = "Psy: " ..tostring(PlayerPsychicName)
  2213. local PsychicplrStatus = game.Players[PlayerPsychicName].leaderstats.Status
  2214. if PsychicplrStatus.Value == "Criminal" then
  2215. StatBestPsychicText1.TextColor3 = Color3.new(1, 0.1, 1)
  2216. elseif PsychicplrStatus.Value == "Lawbreaker" then
  2217. StatBestPsychicText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  2218. elseif PsychicplrStatus.Value == "Guardian" then
  2219. StatBestPsychicText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  2220. elseif PsychicplrStatus.Value == "Protector" then
  2221. StatBestPsychicText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  2222. elseif PsychicplrStatus.Value == "Supervillain" then
  2223. StatBestPsychicText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  2224. elseif PsychicplrStatus.Value == "Superhero" then
  2225. StatBestPsychicText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  2226. else
  2227. StatBestPsychicText1.TextColor3 = Color3.new(1, 1, 1)
  2228. end
  2229. local FindHum = game.Players[PlayerPsychicName].Character.Humanoid
  2230. local PsychicPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  2231. local PsychicPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.FistStrength.Value))
  2232. local PsychicPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.BodyToughness.Value))
  2233. local PsychicPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.MovementSpeed.Value))
  2234. local PsychicPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.JumpForce.Value))
  2235. local PsychicPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.PsychicPower.Value))
  2236. ShowStatsPsychic2.Text = tostring(PsychicPlayerHealth.. "\n" ..PsychicPlayerFist.. "\n" ..PsychicPlayerBody.. "\n" ..PsychicPlayerSpeed.. "\n" ..PsychicPlayerJump.. "\n" ..PsychicPlayerPsychic)
  2237. end
  2238. wait(0.3)
  2239. end
  2240. end)
  2241.  
  2242. -- Display Player Info --
  2243.  
  2244. spawn(function()
  2245. while true do
  2246. statplayer = tostring(PlayerName.Text)
  2247. StatsFrame.Visible = false
  2248. if playerdied == true then repeat wait(0.5) until playerdied == false end
  2249. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2250. if string.lower(v.Name) == string.lower(statplayer) then
  2251. StatsFrame.Visible = true
  2252. local FindHum = v.Character:WaitForChild("Humanoid")
  2253. local PlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  2254. local PlayerFist = converttoletter(string.format("%.0f", game.Players[v.Name].PrivateStats.FistStrength.Value))
  2255. local PlayerBody = converttoletter(string.format("%.0f", game.Players[v.Name].PrivateStats.BodyToughness.Value))
  2256. local PlayerSpeed = converttoletter(string.format("%.0f", game.Players[v.Name].PrivateStats.MovementSpeed.Value))
  2257. local PlayerJump = converttoletter(string.format("%.0f", game.Players[v.Name].PrivateStats.JumpForce.Value))
  2258. local PlayerPsychic = converttoletter(string.format("%.0f", game.Players[v.Name].PrivateStats.PsychicPower.Value))
  2259. ShowStats1.Text = "Health:\nFist:\nBody:\nSpeed:\nJump:\nPsychic:"
  2260. ShowStats2.Text = PlayerHealth.. "\n" ..PlayerFist.. "\n" ..PlayerBody.. "\n" ..PlayerSpeed.. "\n" ..PlayerJump.. "\n" ..PlayerPsychic
  2261. break
  2262. end
  2263. end
  2264. wait(0.25)
  2265. end
  2266. end)
  2267.  
  2268. --- ReJoin Server ---
  2269.  
  2270. ReJoinServer.MouseButton1Click:connect(function()
  2271. local placeId = 2202352383
  2272. game:GetService("TeleportService"):Teleport(placeId)
  2273. end)
Add Comment
Please, Sign In to add comment