Ivansoso

SPTS Origin script

Aug 8th, 2024 (edited)
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 64.35 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local char = plr.Character
  3. local root = char.HumanoidRootPart
  4. local Plrs = game:GetService("Players")
  5. local MyPlr = Plrs.LocalPlayer
  6. local MyChar = MyPlr.Character
  7. local UIS = game:GetService'UserInputService'
  8. local RepStor = game:GetService("ReplicatedStorage")
  9. local CoreGui = game:GetService("CoreGui")
  10. local Run = game:GetService("RunService")
  11. local mouse = game.Players.LocalPlayer:GetMouse()
  12. local human = plr.Character:WaitForChild("Humanoid")
  13.  
  14. -- Anti Idle --
  15. local VirtualUser=game:service'VirtualUser'
  16. game:service'Players'.LocalPlayer.Idled:connect(function()
  17. VirtualUser:CaptureController()
  18. VirtualUser:ClickButton2(Vector2.new())
  19. end)
  20.  
  21. showstartmessage = true
  22. showtopplayersactive = false
  23. showtopplayersfistactive = false
  24. showtopplayersbodyactive = false
  25. showtopplayersspeedactive = false
  26. showtopplayersjumpactive = false
  27. showtopplayerspsychicactive = false
  28. farmbtsafetyactive = false
  29. farmbtsafety2active = false
  30. settplocation = false
  31. playerdied = false
  32. deathreturnactive = false
  33. godmodeactive = false
  34. resetplayerstat = false
  35. killplayeractive = false
  36. farmallactive = false
  37. farmfistactive = false
  38. farmbodyactive = false
  39. farmspeedactive = false
  40. farmjumpactive = false
  41. farmpsychicactive = false
  42. punchmodeactive = false
  43. ESPEnabled = false
  44. ESPLength = 20000
  45.  
  46. CharAddedEvent = { }
  47.  
  48. Plrs.PlayerAdded:connect(function(plr)
  49. if CharAddedEvent[plr.Name] == nil then
  50. CharAddedEvent[plr.Name] = plr.CharacterAdded:connect(function(char)
  51. if ESPEnabled then
  52. RemoveESP(plr)
  53. CreateESP(plr)
  54. end
  55. end)
  56. end
  57. end)
  58.  
  59. Plrs.PlayerRemoving:connect(function(plr)
  60. if CharAddedEvent[plr.Name] ~= nil then
  61. CharAddedEvent[plr.Name]:Disconnect()
  62. CharAddedEvent[plr.Name] = nil
  63. end
  64. RemoveESP(plr)
  65. end)
  66.  
  67. function CreateESP(plr)
  68. if plr ~= nil then
  69. local GetChar = plr.Character
  70. if not GetChar then return end
  71. local GetHead do
  72. repeat wait() until GetChar:FindFirstChild("Head")
  73. end
  74. GetHead = GetChar.Head
  75.  
  76. local bb = Instance.new("BillboardGui", CoreGui)
  77. bb.Adornee = GetHead
  78. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  79. bb.AlwaysOnTop = true
  80. bb.Size = UDim2.new(0, 5, 0, 5)
  81. bb.StudsOffset = Vector3.new(0, 3, 0)
  82. bb.Name = "ESP_" .. plr.Name
  83.  
  84. local frame = Instance.new("Frame", bb)
  85. frame.ZIndex = 10
  86. frame.BackgroundTransparency = 1
  87. frame.Size = UDim2.new(1, 0, 1, 0)
  88.  
  89. local TxtName = Instance.new("TextLabel", frame)
  90. TxtName.Name = "Names"
  91. TxtName.ZIndex = 10
  92. TxtName.Text = plr.Name
  93. TxtName.BackgroundTransparency = 1
  94. TxtName.Position = UDim2.new(0, 0, 0, -45)
  95. TxtName.Size = UDim2.new(1, 0, 10, 0)
  96. TxtName.Font = "SourceSansBold"
  97. TxtName.TextColor3 = Color3.new(0, 0, 0)
  98. TxtName.TextSize = 14
  99. TxtName.TextStrokeTransparency = 0.5
  100.  
  101. local TxtDist = Instance.new("TextLabel", frame)
  102. TxtDist.Name = "Dist"
  103. TxtDist.ZIndex = 10
  104. TxtDist.Text = ""
  105. TxtDist.BackgroundTransparency = 1
  106. TxtDist.Position = UDim2.new(0, 0, 0, -35)
  107. TxtDist.Size = UDim2.new(1, 0, 10, 0)
  108. TxtDist.Font = "SourceSansBold"
  109. TxtDist.TextColor3 = Color3.new(0, 0, 0)
  110. TxtDist.TextSize = 15
  111. TxtDist.TextStrokeTransparency = 0.5
  112.  
  113. local TxtHealth = Instance.new("TextLabel", frame)
  114. TxtHealth.Name = "Health"
  115. TxtHealth.ZIndex = 10
  116. TxtHealth.Text = ""
  117. TxtHealth.BackgroundTransparency = 1
  118. TxtHealth.Position = UDim2.new(0, 0, 0, -25)
  119. TxtHealth.Size = UDim2.new(1, 0, 10, 0)
  120. TxtHealth.Font = "SourceSansBold"
  121. TxtHealth.TextColor3 = Color3.new(0, 0, 0)
  122. TxtHealth.TextSize = 15
  123. TxtHealth.TextStrokeTransparency = 0.5
  124.  
  125. local TxtFist = Instance.new("TextLabel", frame)
  126. TxtFist.Name = "Fist"
  127. TxtFist.ZIndex = 10
  128. TxtFist.Text = ""
  129. TxtFist.BackgroundTransparency = 1
  130. TxtFist.Position = UDim2.new(0, 0, 0, -15)
  131. TxtFist.Size = UDim2.new(1, 0, 10, 0)
  132. TxtFist.Font = "SourceSansBold"
  133. TxtFist.TextColor3 = Color3.new(0, 0, 0)
  134. TxtFist.TextSize = 15
  135. TxtFist.TextStrokeTransparency = 0.5
  136.  
  137. local TxtPsychic = Instance.new("TextLabel", frame)
  138. TxtPsychic.Name = "Psychic"
  139. TxtPsychic.ZIndex = 10
  140. TxtPsychic.Text = ""
  141. TxtPsychic.BackgroundTransparency = 1
  142. TxtPsychic.Position = UDim2.new(0, 0, 0, -5)
  143. TxtPsychic.Size = UDim2.new(1, 0, 10, 0)
  144. TxtPsychic.Font = "SourceSansBold"
  145. TxtPsychic.TextColor3 = Color3.new(0, 0, 0)
  146. TxtPsychic.TextSize = 15
  147. TxtPsychic.TextStrokeTransparency = 0.5
  148. end
  149. end
  150.  
  151. function UpdateESP(plr)
  152. local Find = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  153. if Find then
  154. local plrStatus = game.Players[plr.Name].leaderstats.Status
  155. if plrStatus.Value == "Criminal" then
  156. Find.Frame.Names.TextColor3 = Color3.new(1, 0.1, 1)
  157. elseif plrStatus.Value == "Lawbreaker" then
  158. Find.Frame.Names.TextColor3 = Color3.new(1, 0.1, 0.1)
  159. elseif plrStatus.Value == "Guardian" then
  160. Find.Frame.Names.TextColor3 = Color3.new(0.1, 0.8, 1)
  161. elseif plrStatus.Value == "Protector" then
  162. Find.Frame.Names.TextColor3 = Color3.new(0.1, 0.1, 1)
  163. elseif plrStatus.Value == "Supervillain" then
  164. Find.Frame.Names.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  165. elseif plrStatus.Value == "Superhero" then
  166. Find.Frame.Names.TextColor3 = Color3.new(0.8, 0.8, 0)
  167. else
  168. Find.Frame.Names.TextColor3 = Color3.new(1, 1, 1)
  169. end
  170. Find.Frame.Dist.TextColor3 = Color3.new(1, 1, 1)
  171. Find.Frame.Health.TextColor3 = Color3.new(1, 1, 1)
  172. Find.Frame.Fist.TextColor3 = Color3.new(1, 1, 1)
  173. Find.Frame.Psychic.TextColor3 = Color3.new(1, 1, 1)
  174. local GetChar = plr.Character
  175. if MyChar and GetChar then
  176. local Find2 = MyChar:FindFirstChild("HumanoidRootPart")
  177. local Find3 = GetChar:FindFirstChild("HumanoidRootPart")
  178. local Find4 = GetChar:FindFirstChildOfClass("Humanoid")
  179. if Find2 and Find3 then
  180. local pos = Find3.Position
  181. local Dist = (Find2.Position - pos).magnitude
  182. if Dist > ESPLength then
  183. Find.Frame.Names.Visible = false
  184. Find.Frame.Dist.Visible = false
  185. Find.Frame.Health.Visible = false
  186. Find.Frame.Fist.Visible = false
  187. Find.Frame.Psychic.Visible = false
  188. return
  189. else
  190. Find.Frame.Names.Visible = true
  191. Find.Frame.Dist.Visible = true
  192. Find.Frame.Health.Visible = true
  193. Find.Frame.Fist.Visible = true
  194. Find.Frame.Psychic.Visible = true
  195. end
  196. Find.Frame.Dist.Text = "Distance: " .. string.format("%.0f", Dist)
  197. --Find.Frame.Pos.Text = "(X: " .. string.format("%.0f", pos.X) .. ", Y: " .. string.format("%.0f", pos.Y) .. ", Z: " .. string.format("%.0f", pos.Z) .. ")"
  198. if Find4 then
  199. Find.Frame.Health.Text = "Health: " ..converttoletter(string.format("%.0f", Find4.Health))
  200. Find.Frame.Fist.Text = "Fist: " ..converttoletter(string.format("%.0f", game.Players[plr.Name].PrivateStats.FistStrength.Value))
  201. Find.Frame.Psychic.Text = "Psychic: " ..converttoletter(string.format("%.0f", game.Players[plr.Name].PrivateStats.PsychicPower.Value))
  202. else
  203. Find.Frame.Health.Text = ""
  204. Find.Frame.Fist.Text = ""
  205. Find.Frame.Psychic.Text = ""
  206. end
  207. end
  208. end
  209. end
  210. end
  211.  
  212. function RemoveESP(plr)
  213. local ESP = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  214. if ESP then
  215. ESP:Destroy()
  216. end
  217. end
  218.  
  219. local MainGUI = Instance.new("ScreenGui")
  220. local TopFrame = Instance.new("Frame")
  221. local MainFrame = Instance.new("Frame")
  222. local Open = Instance.new("TextButton")
  223. local Close = Instance.new("TextButton")
  224. local Minimize = Instance.new("TextButton")
  225. local cf = Instance.new("Frame")
  226. local c1 = Instance.new("TextLabel")
  227. local c = Instance.new("TextButton")
  228. local DeathReturn = Instance.new("TextButton")
  229. local PunchMode = Instance.new("TextButton")
  230. local WayPoints = Instance.new("TextButton")
  231. local WayPointsFrame = Instance.new("Frame")
  232. local FarmExp = Instance.new("TextButton")
  233. local FarmExpFrame = Instance.new("Frame")
  234. local ShowLocation = Instance.new("TextLabel")
  235. local SetLocation = Instance.new("TextButton")
  236. local TPLocation = Instance.new("TextButton")
  237. local Location1 = Instance.new("TextButton")
  238. local Location2 = Instance.new("TextButton")
  239. local LocationFS1B = Instance.new("TextButton")
  240. local LocationFS100B = Instance.new("TextButton")
  241. local LocationFS10T = Instance.new("TextButton")
  242. local Location3 = Instance.new("TextButton")
  243. local Location4 = Instance.new("TextButton")
  244. local Location5 = Instance.new("TextButton")
  245. local Location6 = Instance.new("TextButton")
  246. local Location7 = Instance.new("TextButton")
  247. local Location8 = Instance.new("TextButton")
  248. local Location9 = Instance.new("TextButton")
  249. local Location10 = Instance.new("TextButton")
  250. local LocationBT1B = Instance.new("TextButton")
  251. local LocationBT100B = Instance.new("TextButton")
  252. local LocationBT10T = Instance.new("TextButton")
  253. local LocationPP1M = Instance.new("TextButton")
  254. local LocationPP1B = Instance.new("TextButton")
  255. local LocationPP1T = Instance.new("TextButton")
  256. local LocationPP1Qa = Instance.new("TextButton")
  257. local LocationBody1B = Instance.new("TextButton")
  258. local FarmAll = Instance.new("TextButton")
  259. local FarmFist = Instance.new("TextButton")
  260. local FarmBody = Instance.new("TextButton")
  261. local FarmSpeed = Instance.new("TextButton")
  262. local FarmJump = Instance.new("TextButton")
  263. local SavePosition = Instance.new("TextLabel")
  264. local FarmPsychic = Instance.new("TextButton")
  265. local FarmBodyLabel = Instance.new("TextLabel")
  266. local FarmSpeedLabel = Instance.new("TextLabel")
  267. local esptrack = Instance.new("TextButton")
  268. local ESPLength = Instance.new("TextBox")
  269. local Extras = Instance.new("TextButton")
  270. local ExtrasFrame = Instance.new("Frame")
  271. local ShowBetterFS = Instance.new("TextButton")
  272. local ShowBetterBT = Instance.new("TextButton")
  273. local ShowBetterPP = Instance.new("TextButton")
  274. local ShowWorseFS = Instance.new("TextButton")
  275. local ShowWorseBT = Instance.new("TextButton")
  276. local ShowWorsePP = Instance.new("TextButton")
  277. local ShowStatsFist1 = Instance.new("TextLabel")
  278. local ShowStatsBody1 = Instance.new("TextLabel")
  279. local ShowStatsSpeed1 = Instance.new("TextLabel")
  280. local ShowStatsJump1 = Instance.new("TextLabel")
  281. local ShowStatsPsychic1 = Instance.new("TextLabel")
  282. local ShowStatsFist2 = Instance.new("TextLabel")
  283. local ShowStatsBody2 = Instance.new("TextLabel")
  284. local ShowStatsSpeed2 = Instance.new("TextLabel")
  285. local ShowStatsJump2 = Instance.new("TextLabel")
  286. local ShowStatsPsychic2 = Instance.new("TextLabel")
  287. local AnnoyNameLabel = Instance.new("TextLabel")
  288. local AnnoyName = Instance.new("TextBox")
  289. local AnnoyStart = Instance.new("TextButton")
  290. local KillPlayerStart = Instance.new("TextButton")
  291. local TptoPlayer = Instance.new("TextButton")
  292. local farmbtsafety = Instance.new("TextButton")
  293. local farmbtsafetyText1 = Instance.new("TextLabel")
  294. local farmbtsafetylevel = Instance.new("TextBox")
  295. local farmbtsafety2 = Instance.new("TextButton")
  296. local farmbtsafetylabel = Instance.new("TextLabel")
  297. local GodMode = Instance.new("TextButton")
  298.  
  299. -- Properties
  300.  
  301. MainGUI.Name = "MainGUI"
  302. MainGUI.Parent = game.CoreGui
  303. MainGUI.ResetOnSpawn = false
  304. local MainCORE = game.CoreGui["MainGUI"]
  305.  
  306. TopFrame.Name = "TopFrame"
  307. TopFrame.Parent = MainGUI
  308. TopFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  309. TopFrame.BorderColor3 = Color3.new(0, 0, 0)
  310. TopFrame.BackgroundTransparency = 1
  311. TopFrame.Position = UDim2.new(0.5, -30, 0, -27)
  312. TopFrame.Size = UDim2.new(0, 80, 0, 20)
  313. TopFrame.Visible = false
  314.  
  315. Open.Name = "Open"
  316. Open.Parent = TopFrame
  317. Open.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  318. Open.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  319. Open.Size = UDim2.new(0, 60, 0, 20)
  320. Open.Font = Enum.Font.Fantasy
  321. Open.Text = "Open"
  322. Open.TextColor3 = Color3.new(1, 1, 1)
  323. Open.TextSize = 18
  324. Open.Selectable = true
  325. Open.TextWrapped = true
  326.  
  327. MainFrame.Name = "MainFrame"
  328. MainFrame.Parent = MainGUI
  329. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  330. MainFrame.BackgroundTransparency = 0.5
  331. MainFrame.BorderSizePixel = 0
  332. MainFrame.Position = UDim2.new(0.5, -382.5, 0, -32)
  333. MainFrame.Size = UDim2.new(0, 0, 0, 0)
  334. if not cf.Visible then MainGUI:Destroy() else MainFrame.Visible = true end
  335.  
  336. Close.Name = "Close"
  337. Close.Parent = MainFrame
  338. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  339. Close.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  340. Close.Position = UDim2.new(0, 155, 0, 5)
  341. Close.Size = UDim2.new(0, 20, 0, 20)
  342. Close.Font = Enum.Font.Fantasy
  343. Close.Text = "X"
  344. Close.TextColor3 = Color3.new(1, 0, 0)
  345. Close.TextSize = 17
  346. Close.TextScaled = true
  347. Close.TextWrapped = true
  348.  
  349. Minimize.Name = "Minimize"
  350. Minimize.Parent = MainFrame
  351. Minimize.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  352. Minimize.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  353. Minimize.Position = UDim2.new(0, 180, 0, 5)
  354. Minimize.Size = UDim2.new(0, 20, 0, 20)
  355. Minimize.Font = Enum.Font.Fantasy
  356. Minimize.Text = "-"
  357. Minimize.TextColor3 = Color3.new(1, 0, 1)
  358. Minimize.TextSize = 17
  359. Minimize.TextScaled = true
  360. Minimize.TextWrapped = true
  361.  
  362. WayPoints.Name = "WayPoints"
  363. WayPoints.Parent = MainFrame
  364. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  365. WayPoints.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  366. WayPoints.Position = UDim2.new(0, 205, 0, 5)
  367. WayPoints.Size = UDim2.new(0, 65, 0, 20)
  368. WayPoints.Font = Enum.Font.Fantasy
  369. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  370. WayPoints.Text = "Teleport"
  371. WayPoints.TextSize = 17
  372. WayPoints.TextWrapped = true
  373.  
  374. WayPointsFrame.Name = "WayPointsFrame"
  375. WayPointsFrame.Parent = MainFrame
  376. WayPointsFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  377. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  378. WayPointsFrame.BackgroundTransparency = 0.2
  379. WayPointsFrame.Position = UDim2.new(0, 1, 0, 33)
  380. WayPointsFrame.Size = UDim2.new(0, 375, 0, 230)
  381. WayPointsFrame.Visible = false
  382.  
  383. FarmExp.Name = "FarmExp"
  384. FarmExp.Parent = MainFrame
  385. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  386. FarmExp.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  387. FarmExp.Position = UDim2.new(0, 275, 0, 5)
  388. FarmExp.Size = UDim2.new(0, 75, 0, 20)
  389. FarmExp.Font = Enum.Font.Fantasy
  390. FarmExp.TextColor3 = Color3.new(1, 1, 1)
  391. FarmExp.Text = "Farm Exp"
  392. FarmExp.TextSize = 17
  393. FarmExp.TextWrapped = true
  394.  
  395. FarmExpFrame.Name = "FarmExpFrame"
  396. FarmExpFrame.Parent = MainFrame
  397. FarmExpFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  398. FarmExpFrame.BorderColor3 = Color3.new(0, 0, 0)
  399. FarmExpFrame.BackgroundTransparency = 0.2
  400. FarmExpFrame.Position = UDim2.new(0, 210, 0, 33)
  401. FarmExpFrame.Size = UDim2.new(0, 210, 0, 165)
  402. FarmExpFrame.Visible = false
  403.  
  404. ShowLocation.Name = "ShowLocation"
  405. ShowLocation.Parent = WayPointsFrame
  406. ShowLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  407. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  408. ShowLocation.BorderColor3 = Color3.new(0, 0, 0)
  409. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  410. ShowLocation.Size = UDim2.new(0, 170, 0, 20)
  411. ShowLocation.Font = Enum.Font.Fantasy
  412. ShowLocation.Text = "Current Location"
  413. ShowLocation.TextWrapped = true
  414. ShowLocation.TextSize = 15
  415.  
  416. SetLocation.Name = "SetLocation"
  417. SetLocation.Parent = WayPointsFrame
  418. SetLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  419. SetLocation.TextColor3 = Color3.new(1, 1, 1)
  420. SetLocation.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  421. SetLocation.Position = UDim2.new(0, 180, 0, 5)
  422. SetLocation.Size = UDim2.new(0, 120, 0, 20)
  423. SetLocation.Font = Enum.Font.Fantasy
  424. SetLocation.Text = "Set Location"
  425. SetLocation.TextWrapped = true
  426. SetLocation.TextSize = 16
  427.  
  428. TPLocation.Name = "TPLocation"
  429. TPLocation.Parent = WayPointsFrame
  430. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  431. TPLocation.TextColor3 = Color3.new(1, 1, 1)
  432. TPLocation.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  433. TPLocation.Position = UDim2.new(0, 305, 0, 5)
  434. TPLocation.Size = UDim2.new(0, 65, 0, 20)
  435. TPLocation.Font = Enum.Font.Fantasy
  436. TPLocation.Text = "Tp to"
  437. TPLocation.TextWrapped = true
  438. TPLocation.TextSize = 16
  439.  
  440. Location1.Name = "Location1"
  441. Location1.Parent = WayPointsFrame
  442. Location1.BackgroundColor3 = Color3.new(255/255, 94/255, 40/255)
  443. Location1.TextColor3 = Color3.new(1, 1, 1)
  444. Location1.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  445. Location1.Position = UDim2.new(0, 5, 0, 30)
  446. Location1.Size = UDim2.new(0, 365, 0, 20)
  447. Location1.Font = Enum.Font.Fantasy
  448. Location1.Text = "Safe Zone"
  449. Location1.TextWrapped = true
  450. Location1.TextSize = 16
  451.  
  452. Location2.Name = "Location2"
  453. Location2.Parent = WayPointsFrame
  454. Location2.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  455. Location2.TextColor3 = Color3.new(1, 1, 1)
  456. Location2.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  457. Location2.Position = UDim2.new(0, 5, 0, 55)
  458. Location2.Size = UDim2.new(0, 40, 0, 20)
  459. Location2.Font = Enum.Font.Fantasy
  460. Location2.Text = "Rock"
  461. Location2.TextWrapped = true
  462. Location2.TextSize = 16
  463.  
  464. Location7.Name = "Location7"
  465. Location7.Parent = WayPointsFrame
  466. Location7.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  467. Location7.TextColor3 = Color3.new(1, 1, 1)
  468. Location7.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  469. Location7.Position = UDim2.new(0, 50, 0, 55)
  470. Location7.Size = UDim2.new(0, 50, 0, 20)
  471. Location7.Font = Enum.Font.Fantasy
  472. Location7.Text = "Crystal"
  473. Location7.TextWrapped = true
  474. Location7.TextSize = 16
  475.  
  476. LocationFS1B.Name = "LocationFS1B"
  477. LocationFS1B.Parent = WayPointsFrame
  478. LocationFS1B.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  479. LocationFS1B.TextColor3 = Color3.new(1, 1, 1)
  480. LocationFS1B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  481. LocationFS1B.Position = UDim2.new(0, 105, 0, 55)
  482. LocationFS1B.Size = UDim2.new(0, 60, 0, 20)
  483. LocationFS1B.Font = Enum.Font.Fantasy
  484. LocationFS1B.Text = "Blue Star"
  485. LocationFS1B.TextWrapped = true
  486. LocationFS1B.TextSize = 16
  487.  
  488. LocationFS100B.Name = "LocationFS100B"
  489. LocationFS100B.Parent = WayPointsFrame
  490. LocationFS100B.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  491. LocationFS100B.TextColor3 = Color3.new(1, 1, 1)
  492. LocationFS100B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  493. LocationFS100B.Position = UDim2.new(0, 170, 0, 55)
  494. LocationFS100B.Size = UDim2.new(0, 65, 0, 20)
  495. LocationFS100B.Font = Enum.Font.Fantasy
  496. LocationFS100B.Text = "Green Star"
  497. LocationFS100B.TextWrapped = true
  498. LocationFS100B.TextSize = 16
  499.  
  500. LocationFS10T.Name = "LocationFS10T"
  501. LocationFS10T.Parent = WayPointsFrame
  502. LocationFS10T.BackgroundColor3 = Color3.new(70/255, 105/255, 0)
  503. LocationFS10T.TextColor3 = Color3.new(1, 1, 1)
  504. LocationFS10T.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  505. LocationFS10T.Position = UDim2.new(0, 240, 0, 55)
  506. LocationFS10T.Size = UDim2.new(0, 130, 0, 20)
  507. LocationFS10T.Font = Enum.Font.Fantasy
  508. LocationFS10T.Text = "Orange Star"
  509. LocationFS10T.TextWrapped = true
  510. LocationFS10T.TextSize = 16
  511.  
  512. Location3.Name = "Location3"
  513. Location3.Parent = WayPointsFrame
  514. Location3.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  515. Location3.TextColor3 = Color3.new(1, 1, 1)
  516. Location3.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  517. Location3.Position = UDim2.new(0, 5, 0, 80)
  518. Location3.Size = UDim2.new(0, 180, 0, 20)
  519. Location3.Font = Enum.Font.Fantasy
  520. Location3.Text = "City Port Training 1"
  521. Location3.TextWrapped = true
  522. Location3.TextSize = 16
  523.  
  524. Location4.Name = "Location4"
  525. Location4.Parent = WayPointsFrame
  526. Location4.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  527. Location4.TextColor3 = Color3.new(1, 1, 1)
  528. Location4.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  529. Location4.Position = UDim2.new(0, 190, 0, 80)
  530. Location4.Size = UDim2.new(0, 180, 0, 20)
  531. Location4.Font = Enum.Font.Fantasy
  532. Location4.Text = "City Port Training 2"
  533. Location4.TextWrapped = true
  534. Location4.TextSize = 16
  535.  
  536. Location5.Name = "Location5"
  537. Location5.Parent = WayPointsFrame
  538. Location5.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  539. Location5.TextColor3 = Color3.new(1, 1, 1)
  540. Location5.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  541. Location5.Position = UDim2.new(0, 5, 0, 105)
  542. Location5.Size = UDim2.new(0, 180, 0, 20)
  543. Location5.Font = Enum.Font.Fantasy
  544. Location5.Text = "Ice Mountain"
  545. Location5.TextWrapped = true
  546. Location5.TextSize = 16
  547.  
  548. Location6.Name = "Location6"
  549. Location6.Parent = WayPointsFrame
  550. Location6.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  551. Location6.TextColor3 = Color3.new(1, 1, 1)
  552. Location6.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  553. Location6.Position = UDim2.new(0, 190, 0, 105)
  554. Location6.Size = UDim2.new(0, 180, 0, 20)
  555. Location6.Font = Enum.Font.Fantasy
  556. Location6.Text = "Tornado"
  557. Location6.TextWrapped = true
  558. Location6.TextSize = 16
  559.  
  560. Location8.Name = "Location8"
  561. Location8.Parent = WayPointsFrame
  562. Location8.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  563. Location8.TextColor3 = Color3.new(1, 1, 1)
  564. Location8.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  565. Location8.Position = UDim2.new(0, 5, 0, 130)
  566. Location8.Size = UDim2.new(0, 180, 0, 20)
  567. Location8.Font = Enum.Font.Fantasy
  568. Location8.Text = "Volcano"
  569. Location8.TextWrapped = true
  570. Location8.TextSize = 16
  571.  
  572. LocationBT1B.Name = "LocationBT1B"
  573. LocationBT1B.Parent = WayPointsFrame
  574. LocationBT1B.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  575. LocationBT1B.TextColor3 = Color3.new(1, 1, 1)
  576. LocationBT1B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  577. LocationBT1B.Position = UDim2.new(0, 190, 0, 130)
  578. LocationBT1B.Size = UDim2.new(0, 180, 0, 20)
  579. LocationBT1B.Font = Enum.Font.Fantasy
  580. LocationBT1B.Text = "Require 1B+ BT area"
  581. LocationBT1B.TextWrapped = true
  582. LocationBT1B.TextSize = 16
  583.  
  584. LocationBT100B.Name = "LocationBT100B"
  585. LocationBT100B.Parent = WayPointsFrame
  586. LocationBT100B.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  587. LocationBT100B.TextColor3 = Color3.new(1, 1, 1)
  588. LocationBT100B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  589. LocationBT100B.Position = UDim2.new(0, 5, 0, 155)
  590. LocationBT100B.Size = UDim2.new(0, 180, 0, 20)
  591. LocationBT100B.Font = Enum.Font.Fantasy
  592. LocationBT100B.Text = "Require 100B+ BT area"
  593. LocationBT100B.TextWrapped = true
  594. LocationBT100B.TextSize = 16
  595.  
  596. LocationBT10T.Name = "LocationBT10T"
  597. LocationBT10T.Parent = WayPointsFrame
  598. LocationBT10T.BackgroundColor3 = Color3.new(66/255, 0, 165/255)
  599. LocationBT10T.TextColor3 = Color3.new(1, 1, 1)
  600. LocationBT10T.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  601. LocationBT10T.Position = UDim2.new(0, 190, 0, 155)
  602. LocationBT10T.Size = UDim2.new(0, 180, 0, 20)
  603. LocationBT10T.Font = Enum.Font.Fantasy
  604. LocationBT10T.Text = "Require 10T+ BT area"
  605. LocationBT10T.TextWrapped = true
  606. LocationBT10T.TextSize = 16
  607.  
  608. LocationPP1M.Name = "LocationPP1M"
  609. LocationPP1M.Parent = WayPointsFrame
  610. LocationPP1M.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  611. LocationPP1M.TextColor3 = Color3.new(1, 1, 1)
  612. LocationPP1M.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  613. LocationPP1M.Position = UDim2.new(0, 5, 0, 180)
  614. LocationPP1M.Size = UDim2.new(0, 180, 0, 20)
  615. LocationPP1M.Font = Enum.Font.Fantasy
  616. LocationPP1M.Text = "Psychic Island 1M+ PP"
  617. LocationPP1M.TextWrapped = true
  618. LocationPP1M.TextSize = 16
  619.  
  620. LocationPP1B.Name = "LocationPP1B"
  621. LocationPP1B.Parent = WayPointsFrame
  622. LocationPP1B.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  623. LocationPP1B.TextColor3 = Color3.new(1, 1, 1)
  624. LocationPP1B.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  625. LocationPP1B.Position = UDim2.new(0, 190, 0, 180)
  626. LocationPP1B.Size = UDim2.new(0, 180, 0, 20)
  627. LocationPP1B.Font = Enum.Font.Fantasy
  628. LocationPP1B.Text = "Psychic Island 1B+ PP"
  629. LocationPP1B.TextWrapped = true
  630. LocationPP1B.TextSize = 16
  631.  
  632. LocationPP1T.Name = "LocationPP1T"
  633. LocationPP1T.Parent = WayPointsFrame
  634. LocationPP1T.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  635. LocationPP1T.TextColor3 = Color3.new(1, 1, 1)
  636. LocationPP1T.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  637. LocationPP1T.Position = UDim2.new(0, 5, 0, 205)
  638. LocationPP1T.Size = UDim2.new(0, 180, 0, 20)
  639. LocationPP1T.Font = Enum.Font.Fantasy
  640. LocationPP1T.Text = "Psychic Island 1T+ PP"
  641. LocationPP1T.TextWrapped = true
  642. LocationPP1T.TextSize = 16
  643.  
  644. LocationPP1Qa.Name = "LocationPP1Qa"
  645. LocationPP1Qa.Parent = WayPointsFrame
  646. LocationPP1Qa.BackgroundColor3 = Color3.new(195/255, 0, 39/255)
  647. LocationPP1Qa.TextColor3 = Color3.new(1, 1, 1)
  648. LocationPP1Qa.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  649. LocationPP1Qa.Position = UDim2.new(0, 190, 0, 205)
  650. LocationPP1Qa.Size = UDim2.new(0, 180, 0, 20)
  651. LocationPP1Qa.Font = Enum.Font.Fantasy
  652. LocationPP1Qa.Text = "Psychic Island 1Qa+ PP"
  653. LocationPP1Qa.TextWrapped = true
  654. LocationPP1Qa.TextSize = 16
  655.  
  656. FarmAll.Name = "FarmAll"
  657. FarmAll.Parent = FarmExpFrame
  658. FarmAll.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  659. FarmAll.TextColor3 = Color3.new(1, 1, 1)
  660. FarmAll.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  661. FarmAll.Position = UDim2.new(0, 5, 0, 5)
  662. FarmAll.Size = UDim2.new(0, 200, 0, 20)
  663. FarmAll.Font = Enum.Font.Fantasy
  664. FarmAll.Text = "Farm All: OFF"
  665. FarmAll.TextWrapped = true
  666. FarmAll.TextSize = 16
  667.  
  668. FarmFist.Name = "FarmFist"
  669. FarmFist.Parent = FarmExpFrame
  670. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  671. FarmFist.TextColor3 = Color3.new(1, 1, 1)
  672. FarmFist.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  673. FarmFist.Position = UDim2.new(0, 5, 0, 40)
  674. FarmFist.Size = UDim2.new(0, 200, 0, 20)
  675. FarmFist.Font = Enum.Font.Fantasy
  676. FarmFist.Text = "Farm Fist Strength: OFF"
  677. FarmFist.TextWrapped = true
  678. FarmFist.TextSize = 16
  679.  
  680. FarmBody.Name = "FarmBody"
  681. FarmBody.Parent = FarmExpFrame
  682. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  683. FarmBody.TextColor3 = Color3.new(1, 1, 1)
  684. FarmBody.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  685. FarmBody.Position = UDim2.new(0, 5, 0, 65)
  686. FarmBody.Size = UDim2.new(0, 200, 0, 20)
  687. FarmBody.Font = Enum.Font.Fantasy
  688. FarmBody.Text = "Farm Body Toughness: OFF"
  689. FarmBody.TextWrapped = true
  690. FarmBody.TextSize = 16
  691.  
  692. FarmSpeed.Name = "FarmSpeed"
  693. FarmSpeed.Parent = FarmExpFrame
  694. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  695. FarmSpeed.TextColor3 = Color3.new(1, 1, 1)
  696. FarmSpeed.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  697. FarmSpeed.Position = UDim2.new(0, 5, 0, 90)
  698. FarmSpeed.Size = UDim2.new(0, 200, 0, 20)
  699. FarmSpeed.Font = Enum.Font.Fantasy
  700. FarmSpeed.Text = "Farm Movement Speed: OFF"
  701. FarmSpeed.TextWrapped = true
  702. FarmSpeed.TextSize = 16
  703.  
  704. FarmJump.Name = "FarmJump"
  705. FarmJump.Parent = FarmExpFrame
  706. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  707. FarmJump.TextColor3 = Color3.new(1, 1, 1)
  708. FarmJump.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  709. FarmJump.Position = UDim2.new(0, 5, 0, 115)
  710. FarmJump.Size = UDim2.new(0, 200, 0, 20)
  711. FarmJump.Font = Enum.Font.Fantasy
  712. FarmJump.Text = "Farm Jump Force: OFF"
  713. FarmJump.TextWrapped = true
  714. FarmJump.TextSize = 16
  715.  
  716. FarmPsychic.Name = "FarmPsychic"
  717. FarmPsychic.Parent = FarmExpFrame
  718. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  719. FarmPsychic.TextColor3 = Color3.new(1, 1, 1)
  720. FarmPsychic.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  721. FarmPsychic.Position = UDim2.new(0, 5, 0, 140)
  722. FarmPsychic.Size = UDim2.new(0, 200, 0, 20)
  723. FarmPsychic.Font = Enum.Font.Fantasy
  724. FarmPsychic.Text = "Farm Psychic Power: OFF"
  725. FarmPsychic.TextWrapped = true
  726. FarmPsychic.TextSize = 16
  727.  
  728. FarmBodyLabel.Name = "FarmBodyLabel"
  729. FarmBodyLabel.Parent = FarmExpFrame
  730. FarmBodyLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  731. FarmBodyLabel.TextColor3 = Color3.new(1, 1, 1)
  732. FarmBodyLabel.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  733. FarmBodyLabel.Position = UDim2.new(0, 213, 0, 65)
  734. FarmBodyLabel.Size = UDim2.new(0, 200, 0, 100)
  735. FarmBodyLabel.Font = Enum.Font.Fantasy
  736. 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."
  737. FarmBodyLabel.TextSize = 16
  738. FarmBodyLabel.TextWrapped = true
  739. FarmBodyLabel.Visible = false
  740.  
  741. FarmSpeedLabel.Name = "FarmSpeedLabel"
  742. FarmSpeedLabel.Parent = FarmExpFrame
  743. FarmSpeedLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  744. FarmSpeedLabel.TextColor3 = Color3.new(1, 1, 1)
  745. FarmSpeedLabel.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  746. FarmSpeedLabel.Position = UDim2.new(0, 213, 0, 65)
  747. FarmSpeedLabel.Size = UDim2.new(0, 200, 0, 100)
  748. FarmSpeedLabel.Font = Enum.Font.Fantasy
  749. 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."
  750. FarmSpeedLabel.TextSize = 16
  751. FarmSpeedLabel.TextWrapped = true
  752. FarmSpeedLabel.Visible = false
  753.  
  754. DeathReturn.Name = "DeathReturn"
  755. DeathReturn.Parent = MainFrame
  756. DeathReturn.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  757. DeathReturn.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  758. DeathReturn.Position = UDim2.new(0, 355, 0, 5)
  759. DeathReturn.Size = UDim2.new(0, 160, 0, 20)
  760. DeathReturn.Font = Enum.Font.Fantasy
  761. DeathReturn.TextColor3 = Color3.new(1, 1, 1)
  762. DeathReturn.Text = "OnDeath Return: OFF"
  763. DeathReturn.TextSize = 17
  764. DeathReturn.TextWrapped = true
  765.  
  766. esptrack.Name = "esptrack"
  767. esptrack.Parent = MainFrame
  768. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  769. esptrack.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  770. esptrack.Position = UDim2.new(0, 520, 0, 5)
  771. esptrack.Size = UDim2.new(0, 35, 0, 20)
  772. esptrack.TextColor3 = Color3.new(1, 1, 1)
  773. esptrack.Font = Enum.Font.Fantasy
  774. esptrack.Text = "ESP"
  775. esptrack.TextSize = 16
  776. esptrack.TextWrapped = true
  777.  
  778. Extras.Name = "Extras"
  779. Extras.Parent = MainFrame
  780. Extras.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  781. Extras.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  782. Extras.Position = UDim2.new(0, 560, 0, 5)
  783. Extras.Size = UDim2.new(0, 50, 0, 20)
  784. Extras.TextColor3 = Color3.new(1, 1, 1)
  785. Extras.Font = Enum.Font.Fantasy
  786. Extras.Text = "Extras"
  787. Extras.TextSize = 16
  788. Extras.TextWrapped = true
  789.  
  790. ExtrasFrame.Name = "ExtrasFrame"
  791. ExtrasFrame.Parent = MainFrame
  792. ExtrasFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  793. ExtrasFrame.BorderColor3 = Color3.new(0, 0, 0)
  794. ExtrasFrame.BackgroundTransparency = 0.2
  795. ExtrasFrame.Position = UDim2.new(0, 505, 0, 33)
  796. ExtrasFrame.Size = UDim2.new(0, 160, 0, 125)
  797. ExtrasFrame.Visible = false
  798.  
  799. AnnoyName.Name = "AnnoyName"
  800. AnnoyName.Parent = ExtrasFrame
  801. AnnoyName.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  802. AnnoyName.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  803. AnnoyName.Position = UDim2.new(0, 5, 0, 5)
  804. AnnoyName.Size = UDim2.new(0, 150, 0, 20)
  805. AnnoyName.TextColor3 = Color3.new(1, 1, 1)
  806. AnnoyName.Font = Enum.Font.Fantasy
  807. AnnoyName.Text = tostring(MyPlr.Name)
  808. AnnoyName.TextSize = 14
  809. AnnoyName.TextScaled = false
  810. AnnoyName.TextWrapped = true
  811.  
  812. TptoPlayer.Name = "TptoPlayer"
  813. TptoPlayer.Parent = ExtrasFrame
  814. TptoPlayer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  815. TptoPlayer.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  816. TptoPlayer.Position = UDim2.new(0, 5, 0, 26)
  817. TptoPlayer.Size = UDim2.new(0, 150, 0, 20)
  818. TptoPlayer.TextColor3 = Color3.new(1, 1, 1)
  819. TptoPlayer.Font = Enum.Font.Fantasy
  820. TptoPlayer.Text = "TP to Player"
  821. TptoPlayer.TextSize = 16
  822. TptoPlayer.TextWrapped = true
  823.  
  824. AnnoyStart.Name = "AnnoyStart"
  825. AnnoyStart.Parent = ExtrasFrame
  826. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  827. AnnoyStart.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  828. AnnoyStart.Position = UDim2.new(0, 5, 0, 47)
  829. AnnoyStart.Size = UDim2.new(0, 150, 0, 20)
  830. AnnoyStart.TextColor3 = Color3.new(1, 1, 1)
  831. AnnoyStart.Font = Enum.Font.Fantasy
  832. AnnoyStart.Text = "TP Spam Player: OFF"
  833. AnnoyStart.TextSize = 16
  834. AnnoyStart.TextWrapped = true
  835.  
  836. farmbtsafety.Name = "farmbtsafety"
  837. farmbtsafety.Parent = ExtrasFrame
  838. farmbtsafety.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  839. farmbtsafety.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  840. farmbtsafety.Position = UDim2.new(0, 5, 0, 80)
  841. farmbtsafety.Size = UDim2.new(0, 150, 0, 20)
  842. farmbtsafety.Font = Enum.Font.Fantasy
  843. farmbtsafety.TextColor3 = Color3.new(1, 1, 1)
  844. farmbtsafety.Text = "Safety BT farm: OFF"
  845. farmbtsafety.TextSize = 16
  846. farmbtsafety.TextWrapped = true
  847.  
  848. farmbtsafetylabel.Name = "farmbtsafetylabel"
  849. farmbtsafetylabel.Parent = ExtrasFrame
  850. farmbtsafetylabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  851. farmbtsafetylabel.BorderSizePixel = 0
  852. farmbtsafetylabel.Position = UDim2.new(0, 5, 0, 101)
  853. farmbtsafetylabel.Size = UDim2.new(0, 120, 0, 20)
  854. farmbtsafetylabel.TextColor3 = Color3.new(1, 1, 1)
  855. farmbtsafetylabel.Font = Enum.Font.Fantasy
  856. farmbtsafetylabel.Text = "Health [percent]"
  857. farmbtsafetylabel.TextSize = 16
  858. farmbtsafetylabel.TextWrapped = true
  859.  
  860. farmbtsafetylevel.Name = "farmbtsafetylevel"
  861. farmbtsafetylevel.Parent = ExtrasFrame
  862. farmbtsafetylevel.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  863. farmbtsafetylevel.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  864. farmbtsafetylevel.Position = UDim2.new(0, 125, 0, 101)
  865. farmbtsafetylevel.Size = UDim2.new(0, 30, 0, 19)
  866. farmbtsafetylevel.TextColor3 = Color3.new(1, 1, 1)
  867. farmbtsafetylevel.Font = Enum.Font.Fantasy
  868. farmbtsafetylevel.Text = "50"
  869. farmbtsafetylevel.TextSize = 16
  870. farmbtsafetylevel.TextWrapped = true
  871.  
  872. farmbtsafetyText1.Name = "farmbtsafetyText1"
  873. farmbtsafetyText1.Parent = ExtrasFrame
  874. farmbtsafetyText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  875. farmbtsafetyText1.TextColor3 = Color3.new(1, 1, 1)
  876. farmbtsafetyText1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  877. farmbtsafetyText1.Position = UDim2.new(0, -155, 0, 141)
  878. farmbtsafetyText1.Size = UDim2.new(0, 150, 0, 115)
  879. farmbtsafetyText1.Font = Enum.Font.Fantasy
  880. farmbtsafetyText1.Text = "Enable this to tp you to the safe zone when your health goes below the preset figure."
  881. farmbtsafetyText1.TextSize = 16
  882. farmbtsafetyText1.TextWrapped = true
  883. farmbtsafetyText1.Visible = false
  884.  
  885. -- Close --
  886.  
  887. Open.MouseButton1Down:connect(function()
  888. TopFrame.Visible = false
  889. MainFrame.Visible = true
  890. end)
  891.  
  892. Minimize.MouseButton1Down:connect(function()
  893. TopFrame.Visible = true
  894. MainFrame.Visible = false
  895. end)
  896.  
  897. Close.MouseButton1Down:connect(function()
  898. MainGUI:Destroy()
  899. end)
  900.  
  901. -- Menus --
  902.  
  903. local Menus = {
  904. [WayPoints] = WayPointsFrame;
  905. [FarmExp] = FarmExpFrame;
  906. [Extras] = ExtrasFrame;
  907. }
  908. for button,frame in pairs(Menus) do
  909. button.MouseButton1Click:connect(function()
  910. if frame.Visible then
  911. frame.Visible = false
  912. return
  913. end
  914. for k,v in pairs(Menus) do
  915. v.Visible = v == frame
  916. end
  917. end)
  918. end
  919.  
  920. FarmBody.MouseEnter:connect(function()
  921. FarmBodyLabel.Visible = true
  922. end)
  923.  
  924. FarmBody.MouseLeave:connect(function()
  925. FarmBodyLabel.Visible = false
  926. end)
  927.  
  928. FarmSpeed.MouseEnter:connect(function()
  929. FarmSpeedLabel.Visible = true
  930. end)
  931.  
  932. FarmSpeed.MouseLeave:connect(function()
  933. FarmSpeedLabel.Visible = false
  934. end)
  935.  
  936. FarmJump.MouseEnter:connect(function()
  937. FarmSpeedLabel.Visible = true
  938. end)
  939.  
  940. FarmJump.MouseLeave:connect(function()
  941. FarmSpeedLabel.Visible = false
  942. end)
  943.  
  944. farmbtsafety.MouseEnter:connect(function()
  945. farmbtsafetyText1.Visible = true
  946. end)
  947.  
  948. farmbtsafety.MouseLeave:connect(function()
  949. farmbtsafetyText1.Visible = false
  950. end)
  951.  
  952. c.MouseButton1Down:connect(function()
  953. cf.Visible = false
  954. end)
  955.  
  956. -- Round Number to decimal places and convert to letter value --
  957.  
  958. function round(num, numDecimalPlaces)
  959. local mult = 10^(numDecimalPlaces or 0)
  960. return math.floor(num * mult + 0.5) / mult
  961. end
  962.  
  963. function converttoletter(num)
  964. if num / 1e21 >=1 then
  965. newnum = num / 1e21
  966. return round(newnum, 6).. "Sx"
  967. elseif num / 1e18 >=1 then
  968. newnum = num / 1e18
  969. return round(newnum, 6).. "Qi"
  970. elseif num / 1e15 >=1 then
  971. newnum = num / 1e15
  972. return round(newnum, 6).. "Qa"
  973. elseif num / 1e12 >=1 then
  974. newnum = num / 1e12
  975. return round(newnum, 6).. "T"
  976. elseif num / 1e09 >=1 then
  977. newnum = num / 1e09
  978. return round(newnum, 6).. "B"
  979. elseif num / 1e06 >=1 then
  980. newnum = num / 1e06
  981. return round(newnum, 6).. "M"
  982. elseif num / 1e03 >=1 then
  983. newnum = num / 1e03
  984. return round(newnum, 6).. "K"
  985. else return num
  986. end
  987. end
  988.  
  989. --- Farm BT Safety ---
  990.  
  991. farmbtsafety.MouseButton1Down:connect(function()
  992. farmbtsafetyactive = not farmbtsafetyactive
  993. if farmbtsafetyactive then
  994. farmbtsafety.Text = "Safety BT farm: ON"
  995. farmbtsafety.BackgroundColor3 = Color3.new(0, 0.5, 0)
  996. else
  997. farmbtsafety.Text = "Safety BT farm: OFF"
  998. farmbtsafety.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  999. end
  1000. end)
  1001.  
  1002. spawn(function()
  1003. while true do
  1004. if farmbtsafetyactive then
  1005. while farmbtsafetyactive do
  1006. local FindHum = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  1007. local currenthealth = tonumber(string.format("%.0f", FindHum.Health))
  1008. local minhealth = tonumber(string.format("%.0f", FindHum.MaxHealth))*tonumber(farmbtsafetylevel.Text)/100
  1009. -- print("Current Health: " ..tostring(currenthealth).. ". Min Health: " ..tostring(minhealth))
  1010. if currenthealth <= minhealth then
  1011. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1012. end
  1013. wait(0.2)
  1014. end
  1015. end
  1016. wait(0.5)
  1017. end
  1018. end)
  1019.  
  1020. -- Show Location --
  1021.  
  1022. local curlocation = coroutine.wrap(function()
  1023. while true do
  1024. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  1025. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  1026. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  1027. ShowLocation.Text = "Coords: "..LocationX..", "..LocationY..", "..LocationZ
  1028. wait(0.5)
  1029. end
  1030. end)
  1031.  
  1032. curlocation()
  1033.  
  1034. -- Set Locations --
  1035.  
  1036. SetLocation.MouseButton1Down:connect(function()
  1037. function round(num, numDecimalPlaces)
  1038. local mult = 10^(numDecimalPlaces or 0)
  1039. return math.floor(num * mult + 0.5) / mult
  1040. end
  1041. setlocationx = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  1042. setlocationy = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  1043. setlocationz = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  1044. print("Set Custom Location: "..setlocationx..", "..setlocationy..", "..setlocationz)
  1045. SetLocation.Text = setlocationx..","..setlocationy..","..setlocationz
  1046. CustomLocationSet = true
  1047. end)
  1048.  
  1049. --- TP to custom location ---
  1050.  
  1051. TPLocation.MouseButton1Down:connect(function()
  1052. if CustomLocationSet == true then
  1053. workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = CFrame.new(setlocationx, setlocationy, setlocationz)
  1054. WayPointsFrame.Visible = false
  1055. end
  1056. end)
  1057.  
  1058. Location1.MouseButton1Click:connect(function()
  1059. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(459, 248, 887)
  1060. WayPointsFrame.Visible = false
  1061. end)
  1062.  
  1063. Location2.MouseButton1Click:connect(function()
  1064. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(409, 271, 978)
  1065. WayPointsFrame.Visible = false
  1066. end)
  1067.  
  1068. LocationFS1B.MouseButton1Click:connect(function()
  1069. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1176, 4789, -2293)
  1070. WayPointsFrame.Visible = false
  1071. end)
  1072.  
  1073. LocationFS10T.MouseButton1Click:connect(function()
  1074. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-369, 15735, -9)
  1075. WayPointsFrame.Visible = false
  1076. end)
  1077.  
  1078. LocationFS100B.MouseButton1Click:connect(function()
  1079. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1381, 9274, 1647)
  1080. WayPointsFrame.Visible = false
  1081. end)
  1082.  
  1083. Location7.MouseButton1Click:connect(function()
  1084. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2279, 1944, 1053)
  1085. WayPointsFrame.Visible = false
  1086. end)
  1087.  
  1088. Location3.MouseButton1Click:connect(function()
  1089. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(365, 249, -445)
  1090. settplocation = "BT100Area"
  1091. WayPointsFrame.Visible = false
  1092. end)
  1093.  
  1094. Location4.MouseButton1Click:connect(function()
  1095. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(349, 263, -490)
  1096. settplocation = "BT10KArea"
  1097. WayPointsFrame.Visible = false
  1098. end)
  1099.  
  1100. Location5.MouseButton1Click:connect(function()
  1101. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1640, 258, 2244)
  1102. settplocation = "BT100KArea"
  1103. WayPointsFrame.Visible = false
  1104. end)
  1105.  
  1106. Location6.MouseButton1Click:connect(function()
  1107. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2307, 976, 1068)
  1108. settplocation = "BT1MArea"
  1109. WayPointsFrame.Visible = false
  1110. end)
  1111.  
  1112. Location8.MouseButton1Click:connect(function()
  1113. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2024, 714, -1860)
  1114. settplocation = "BT10MArea"
  1115. WayPointsFrame.Visible = false
  1116. end)
  1117.  
  1118. LocationBT1B.MouseButton1Click:connect(function()
  1119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-254, 286, 980)
  1120. settplocation = "BT1BArea"
  1121. WayPointsFrame.Visible = false
  1122. end)
  1123.  
  1124. LocationBT100B.MouseButton1Click:connect(function()
  1125. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-271, 279, 991)
  1126. settplocation = "BT100BArea"
  1127. WayPointsFrame.Visible = false
  1128. end)
  1129.  
  1130. LocationBT10T.MouseButton1Click:connect(function()
  1131. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-279, 279, 1007)
  1132. settplocation = "BT10TArea"
  1133. WayPointsFrame.Visible = false
  1134. end)
  1135.  
  1136. LocationPP1M.MouseButton1Click:connect(function()
  1137. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2527, 5486, -532)
  1138. settplocation = "PP1MArea"
  1139. WayPointsFrame.Visible = false
  1140. end)
  1141.  
  1142. LocationPP1B.MouseButton1Click:connect(function()
  1143. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2560, 5500, -439)
  1144. settplocation = "PP1BArea"
  1145. WayPointsFrame.Visible = false
  1146. end)
  1147.  
  1148. LocationPP1T.MouseButton1Click:connect(function()
  1149. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2582, 5516, -504)
  1150. settplocation = "PP1TArea"
  1151. WayPointsFrame.Visible = false
  1152. end)
  1153.  
  1154. LocationPP1Qa.MouseButton1Click:connect(function()
  1155. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2544, 5412, -495)
  1156. settplocation = "PP1QaArea"
  1157. WayPointsFrame.Visible = false
  1158. end)
  1159.  
  1160. -- ESP Stuff --
  1161.  
  1162. Run:BindToRenderStep("UpdateESP", Enum.RenderPriority.Character.Value, function()
  1163. for _, v in next, Plrs:GetPlayers() do
  1164. UpdateESP(v)
  1165. end
  1166. end)
  1167.  
  1168. -- Farm Exp --
  1169.  
  1170. FarmAll.MouseButton1Click:Connect(function()
  1171. if farmallactive ~= true then
  1172. farmallactive = true
  1173. farmfistactive = true
  1174. farmbodyactive = true
  1175. farmspeedactive = true
  1176. farmpsychicactive = true
  1177. farmjumpactive = true
  1178. FarmAll.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1179. FarmAll.Text = "Farm All: ON"
  1180. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1181. else
  1182. farmallactive = false
  1183. farmfistactive = false
  1184. farmbodyactive = false
  1185. farmspeedactive = false
  1186. farmpsychicactive = false
  1187. farmjumpactive = false
  1188. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1189. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1190. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1191. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1192. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1193. FarmAll.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1194. FarmAll.Text = "Farm All: OFF"
  1195. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1196. end
  1197. end)
  1198.  
  1199. FarmFist.MouseButton1Click:Connect(function()
  1200. if farmfistactive ~= true then
  1201. farmfistactive = true
  1202. FarmFist.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1203. FarmFist.Text = "Farm Fist Strength: ON"
  1204. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1205. else
  1206. farmfistactive = false
  1207. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1208. FarmFist.Text = "Farm Fist Strength: OFF"
  1209. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1210. end
  1211. end)
  1212.  
  1213. FarmBody.MouseButton1Click:Connect(function()
  1214. if farmbodyactive ~= true then
  1215. farmbodyactive = true
  1216. FarmBody.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1217. FarmBody.Text = "Farm Body Strength: ON"
  1218. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1219. else
  1220. farmbodyactive = false
  1221. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1222. FarmBody.Text = "Farm Body Strength: OFF"
  1223. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1224. end
  1225. end)
  1226.  
  1227. FarmSpeed.MouseButton1Click:Connect(function()
  1228. if farmspeedactive ~= true then
  1229. farmspeedactive = true
  1230. FarmSpeed.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1231. FarmSpeed.Text = "Farm Speed Strength: ON"
  1232. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1233. else
  1234. farmspeedactive = false
  1235. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1236. FarmSpeed.Text = "Farm Speed Strength: OFF"
  1237. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1238. end
  1239. end)
  1240.  
  1241. FarmJump.MouseButton1Click:Connect(function()
  1242. if farmjumpactive ~= true then
  1243. farmjumpactive = true
  1244. FarmJump.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1245. FarmJump.Text = "Farm Jump Strength: ON"
  1246. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1247. else
  1248. farmjumpactive = false
  1249. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1250. FarmJump.Text = "Farm Jump Strength: OFF"
  1251. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1252. end
  1253. end)
  1254.  
  1255. FarmPsychic.MouseButton1Click:Connect(function()
  1256. if farmpsychicactive ~= true then
  1257. farmpsychicactive = true
  1258. FarmPsychic.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1259. FarmPsychic.Text = "Farm Psychic Strength: ON"
  1260. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1261. else
  1262. farmpsychicactive = false
  1263. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1264. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1265. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1266. end
  1267. end)
  1268.  
  1269. spawn(function()
  1270. while true do
  1271. if farmfistactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1272. if tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 10e12 then
  1273. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-369, 15735, -9)
  1274. fistarguments = {"+FS6"}
  1275. farmpsychicactive = false
  1276. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1277. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1278. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 100e09 then
  1279. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1381, 9274, 1647)
  1280. fistarguments = {"+FS5"}
  1281. farmpsychicactive = false
  1282. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1283. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1284. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.FistStrength.Value)) >= 1e09 then
  1285. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1176, 4789, -2293)
  1286. fistarguments = {"+FS4"}
  1287. farmpsychicactive = false
  1288. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1289. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1290. else
  1291. fistarguments = {"+FS3", "+FS2", "+FS1"}
  1292. end
  1293. while farmfistactive do
  1294. game:GetService('RunService').Stepped:wait()
  1295. for i,v in pairs(fistarguments) do
  1296. game.ReplicatedStorage.RemoteEvent:FireServer({[1] = v})
  1297. end
  1298. end
  1299. end
  1300. wait(1)
  1301. end
  1302. end)
  1303.  
  1304. spawn(function()
  1305. while true do
  1306. if farmbodyactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1307. while farmbodyactive do
  1308. local bodyarguments = {"+BT5", "+BT4", "+BT3", "+BT2", "+BT1"}
  1309. local event = game.ReplicatedStorage.RemoteEvent
  1310. for i,v in pairs(bodyarguments) do
  1311. event:FireServer({[1] = v})
  1312. wait()
  1313. end
  1314. wait()
  1315. end
  1316. end
  1317. wait(1)
  1318. end
  1319. end)
  1320.  
  1321. spawn(function()
  1322. while true do
  1323. if farmspeedactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1324. while farmspeedactive do
  1325. local speedarguments = {"+MS5", "+MS4", "+MS3", "+MS2", "+MS1"}
  1326. local event = game.ReplicatedStorage.RemoteEvent
  1327. for i,v in pairs(speedarguments) do
  1328. event:FireServer({[1] = v})
  1329. wait()
  1330. end
  1331. wait()
  1332. end
  1333. end
  1334. wait(1)
  1335. end
  1336. end)
  1337.  
  1338. spawn(function()
  1339. while true do
  1340. if farmjumpactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1341. while farmjumpactive do
  1342. local jumparguments = {"+JF5", "+JF4", "+JF3", "+JF2", "+JF1"}
  1343. local event = game.ReplicatedStorage.RemoteEvent
  1344. for i,v in pairs(jumparguments) do
  1345. event:FireServer({[1] = v})
  1346. wait()
  1347. end
  1348. wait()
  1349. end
  1350. end
  1351. wait(1)
  1352. end
  1353. end)
  1354.  
  1355. spawn(function()
  1356. while true do
  1357. if farmpsychicactive and game.Players.LocalPlayer.Character:WaitForChild("Humanoid") then
  1358. if tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e15 then
  1359. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2544, 5412, -495)
  1360. psychicarguments = {"+PP6"}
  1361. farmfistactive = false
  1362. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1363. FarmFist.Text = "Farm Fist Strength: OFF"
  1364. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e12 then
  1365. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2582, 5516, -504)
  1366. psychicarguments = {"+PP5"}
  1367. farmfistactive = false
  1368. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1369. FarmFist.Text = "Farm Fist Strength: OFF"
  1370. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e09 then
  1371. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2560, 5500, -439)
  1372. psychicarguments = {"+PP4"}
  1373. farmfistactive = false
  1374. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1375. FarmFist.Text = "Farm Fist Strength: OFF"
  1376. elseif tonumber(string.format("%.0f", game.Players.LocalPlayer.PrivateStats.PsychicPower.Value)) >= 1e06 then
  1377. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2527, 5486, -532)
  1378. psychicarguments = {"+PP3"}
  1379. farmfistactive = false
  1380. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1381. FarmFist.Text = "Farm Fist Strength: OFF"
  1382. else
  1383. psychicarguments = {"+PP2", "+PP1"}
  1384. end
  1385. while farmpsychicactive do
  1386. game:GetService('RunService').Stepped:wait()
  1387. for i,v in pairs(psychicarguments) do
  1388. game.ReplicatedStorage.RemoteEvent:FireServer({[1] = v})
  1389. end
  1390. end
  1391. end
  1392. wait(1)
  1393. end
  1394. end)
  1395.  
  1396. -- Return to position on Death --
  1397.  
  1398. DeathReturn.MouseButton1Click:Connect(function()
  1399. if deathreturnactive ~= true then
  1400. deathreturnactive = true
  1401. DeathReturn.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1402. DeathReturn.Text = "OnDeath Return: ON"
  1403. else
  1404. deathreturnactive = false
  1405. DeathReturn.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1406. DeathReturn.Text = "OnDeath Return: OFF"
  1407. end
  1408. end)
  1409.  
  1410. spawn(function()
  1411. while true do
  1412. if deathreturnactive then
  1413. player = game:GetService("Players").LocalPlayer
  1414. player.Character.Humanoid.Died:connect(function()
  1415. playerdied = true
  1416. end)
  1417. end
  1418. if not playerdied then
  1419. lastlocationx = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x
  1420. lastlocationy = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y
  1421. lastlocationz = game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z
  1422. SavePosition.Text = "Last Place: " ..lastlocationx.. "," ..lastlocationy.. "," ..lastlocationz
  1423. --print(tostring(SavePosition.Text))
  1424. wait(0.5)
  1425. end
  1426. if playerdied then
  1427. --print("Player " ..tostring(game.Players.LocalPlayer.Name).. " Died")
  1428. --print(tostring(SavePosition.Text))
  1429. wait(5)
  1430. game:GetService("ReplicatedStorage").RemoteEvent:FireServer({[1] = "Respawn"})
  1431. wait(1)
  1432. game.Lighting.Blur.Enabled = false
  1433. game.Players.LocalPlayer.PlayerGui.IntroGui.Enabled = false
  1434. game.Players.LocalPlayer.PlayerGui.ScreenGui.Enabled = true
  1435. wait(4)
  1436. --print("screengui disabled")
  1437. repeat wait(0.1) until game.Players.LocalPlayer.Character.Humanoid
  1438. --print("Teleporting back to " ..tostring(SavePosition.Text))
  1439. if deathreturnactive then
  1440. local FindHum = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  1441. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(lastlocationx, lastlocationy, lastlocationz)
  1442. end
  1443. playerdied = false
  1444. end
  1445. wait(1)
  1446. end
  1447. end)
  1448.  
  1449. -- Annoy Player --
  1450.  
  1451. AnnoyStart.MouseButton1Click:Connect(function()
  1452. if annoyplayeractive ~= true then
  1453. annoyplayeractive = true
  1454. AnnoyStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1455. AnnoyStart.Text = "TP Spam Player: ON"
  1456. else
  1457. annoyplayeractive = false
  1458. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1459. AnnoyStart.Text = "TP Spam Player: OFF"
  1460. end
  1461. end)
  1462.  
  1463. spawn(function()
  1464. while true do
  1465. wait(0.5)
  1466. if annoyplayeractive then
  1467. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1468. if v.Name:lower():find(AnnoyName.Text:lower()) then
  1469. player = game.Players.LocalPlayer.Character
  1470. local startpos = player.HumanoidRootPart.CFrame
  1471. v.Character.Humanoid.Died:connect(function()
  1472. annoyplayeractive = false
  1473. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1474. AnnoyStart.Text = "TP Spam Player: OFF"
  1475. end)
  1476. player.Humanoid.Died:connect(function()
  1477. annoyplayeractive = false
  1478. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1479. AnnoyStart.Text = "TP Spam Player: OFF"
  1480. end)
  1481. while annoyplayeractive == true do
  1482. player.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  1483. wait(.005)
  1484. end
  1485. player.HumanoidRootPart.CFrame = startpos
  1486. end
  1487. end
  1488. end
  1489. end
  1490. end)
  1491.  
  1492. TptoPlayer.MouseButton1Click:Connect(function()
  1493. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1494. if v.Name:lower():find(AnnoyName.Text:lower()) then
  1495. if v.Name ~= tostring(MyPlr.Name) then
  1496. player = game.Players.LocalPlayer.Character
  1497. player.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(3, 0, 3)
  1498. end
  1499. end
  1500. end
  1501. end)
  1502.  
  1503. -- ESP --
  1504.  
  1505. esptrack.MouseButton1Click:connect(function()
  1506. ESPEnabled = not ESPEnabled
  1507. if ESPEnabled then
  1508. esptrack.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1509. for _, v in next, Plrs:GetPlayers() do
  1510. if v ~= MyPlr then
  1511. if CharAddedEvent[v.Name] == nil then
  1512. CharAddedEvent[v.Name] = v.CharacterAdded:connect(function(Char)
  1513. if ESPEnabled then
  1514. RemoveESP(v)
  1515. CreateESP(v)
  1516. end
  1517. repeat wait() until Char:FindFirstChild("HumanoidRootPart")
  1518. end)
  1519. end
  1520. RemoveESP(v)
  1521. CreateESP(v)
  1522. end
  1523. end
  1524. else
  1525. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1526. for _, v in next, Plrs:GetPlayers() do
  1527. RemoveESP(v)
  1528. end
  1529. end
  1530. end)
  1531.  
  1532. spawn(function()
  1533. while true do
  1534. if showtopplayersfistactive then
  1535. BestPlayerFist = 1
  1536. PlayerFistName = false
  1537. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1538. local PlayerFist = tonumber(game.Players[v.Name].PrivateStats.FistStrength.Value)
  1539. if PlayerFist > tonumber(BestPlayerFist) then
  1540. BestPlayerFist = PlayerFist
  1541. PlayerFistName = tostring(v.Name)
  1542. end
  1543. end
  1544. StatBestFistText1.Text = "Fist: " ..tostring(PlayerFistName)
  1545. local fistplrStatus = game.Players[PlayerFistName].leaderstats.Status
  1546. if fistplrStatus.Value == "Criminal" then
  1547. StatBestFistText1.TextColor3 = Color3.new(1, 0.1, 1)
  1548. elseif fistplrStatus.Value == "Lawbreaker" then
  1549. StatBestFistText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  1550. elseif fistplrStatus.Value == "Guardian" then
  1551. StatBestFistText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  1552. elseif fistplrStatus.Value == "Protector" then
  1553. StatBestFistText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  1554. elseif fistplrStatus.Value == "Supervillain" then
  1555. StatBestFistText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  1556. elseif fistplrStatus.Value == "Superhero" then
  1557. StatBestFistText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  1558. else
  1559. StatBestFistText1.TextColor3 = Color3.new(1, 1, 1)
  1560. end
  1561. local FindHum = game.Players[PlayerFistName].Character.Humanoid
  1562. local FistPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  1563. local FistPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.FistStrength.Value))
  1564. local FistPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.BodyToughness.Value))
  1565. local FistPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.MovementSpeed.Value))
  1566. local FistPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.JumpForce.Value))
  1567. local FistPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerFistName].PrivateStats.PsychicPower.Value))
  1568. ShowStatsFist2.Text = tostring(FistPlayerHealth.. "\n" ..FistPlayerFist.. "\n" ..FistPlayerBody.. "\n" ..FistPlayerSpeed.. "\n" ..FistPlayerJump.. "\n" ..FistPlayerPsychic)
  1569. end
  1570. wait(0.3)
  1571. end
  1572. end)
  1573.  
  1574. spawn(function()
  1575. while true do
  1576. if showtopplayersbodyactive then
  1577. BestPlayerBody = 1
  1578. PlayerBodyName = false
  1579. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1580. local PlayerBody = tonumber(game.Players[v.Name].PrivateStats.BodyToughness.Value)
  1581. if PlayerBody > tonumber(BestPlayerBody) then
  1582. BestPlayerBody = PlayerBody
  1583. PlayerBodyName = tostring(v.Name)
  1584. end
  1585. end
  1586. StatBestBodyText1.Text = "Body: " ..tostring(PlayerBodyName)
  1587. local bodyplrStatus = game.Players[PlayerBodyName].leaderstats.Status
  1588. if bodyplrStatus.Value == "Criminal" then
  1589. StatBestBodyText1.TextColor3 = Color3.new(1, 0.1, 1)
  1590. elseif bodyplrStatus.Value == "Lawbreaker" then
  1591. StatBestBodyText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  1592. elseif bodyplrStatus.Value == "Guardian" then
  1593. StatBestBodyText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  1594. elseif bodyplrStatus.Value == "Protector" then
  1595. StatBestBodyText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  1596. elseif bodyplrStatus.Value == "Supervillain" then
  1597. StatBestBodyText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  1598. elseif bodyplrStatus.Value == "Superhero" then
  1599. StatBestBodyText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  1600. else
  1601. StatBestBodyText1.TextColor3 = Color3.new(1, 1, 1)
  1602. end
  1603. local FindHum = game.Players[PlayerBodyName].Character.Humanoid
  1604. local BodyPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  1605. local BodyPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.FistStrength.Value))
  1606. local BodyPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.BodyToughness.Value))
  1607. local BodyPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.MovementSpeed.Value))
  1608. local BodyPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.JumpForce.Value))
  1609. local BodyPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerBodyName].PrivateStats.PsychicPower.Value))
  1610. ShowStatsBody2.Text = tostring(BodyPlayerHealth.. "\n" ..BodyPlayerFist.. "\n" ..BodyPlayerBody.. "\n" ..BodyPlayerSpeed.. "\n" ..BodyPlayerJump.. "\n" ..BodyPlayerPsychic)
  1611. end
  1612. wait(0.3)
  1613. end
  1614. end)
  1615.  
  1616. spawn(function()
  1617. while true do
  1618. if showtopplayersspeedactive then
  1619. BestPlayerSpeed = 1
  1620. PlayerSpeedName = false
  1621. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1622. local PlayerSpeed = tonumber(game.Players[v.Name].PrivateStats.MovementSpeed.Value)
  1623. if PlayerSpeed > tonumber(BestPlayerSpeed) then
  1624. BestPlayerSpeed = PlayerSpeed
  1625. PlayerSpeedName = tostring(v.Name)
  1626. end
  1627. end
  1628. StatBestSpeedText1.Text = "Speed: " ..tostring(PlayerSpeedName)
  1629. local speedplrStatus = game.Players[PlayerSpeedName].leaderstats.Status
  1630. if speedplrStatus.Value == "Criminal" then
  1631. StatBestSpeedText1.TextColor3 = Color3.new(1, 0.1, 1)
  1632. elseif speedplrStatus.Value == "Lawbreaker" then
  1633. StatBestSpeedText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  1634. elseif speedplrStatus.Value == "Guardian" then
  1635. StatBestSpeedText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  1636. elseif speedplrStatus.Value == "Protector" then
  1637. StatBestSpeedText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  1638. elseif speedplrStatus.Value == "Supervillain" then
  1639. StatBestSpeedText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  1640. elseif speedplrStatus.Value == "Superhero" then
  1641. StatBestSpeedText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  1642. else
  1643. StatBestSpeedText1.TextColor3 = Color3.new(1, 1, 1)
  1644. end
  1645. local FindHum = game.Players[PlayerSpeedName].Character.Humanoid
  1646. local SpeedPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  1647. local SpeedPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.FistStrength.Value))
  1648. local SpeedPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.BodyToughness.Value))
  1649. local SpeedPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.MovementSpeed.Value))
  1650. local SpeedPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.JumpForce.Value))
  1651. local SpeedPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerSpeedName].PrivateStats.PsychicPower.Value))
  1652. ShowStatsSpeed2.Text = tostring(SpeedPlayerHealth.. "\n" ..SpeedPlayerFist.. "\n" ..SpeedPlayerBody.. "\n" ..SpeedPlayerSpeed.. "\n" ..SpeedPlayerJump.. "\n" ..SpeedPlayerPsychic)
  1653. end
  1654. wait(0.3)
  1655. end
  1656. end)
  1657.  
  1658. spawn(function()
  1659. while true do
  1660. if showtopplayersjumpactive then
  1661. BestPlayerJump = 1
  1662. PlayerJumpName = false
  1663. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1664. local PlayerJump = tonumber(game.Players[v.Name].PrivateStats.JumpForce.Value)
  1665. if PlayerJump > tonumber(BestPlayerJump) then
  1666. BestPlayerJump = PlayerJump
  1667. PlayerJumpName = tostring(v.Name)
  1668. end
  1669. end
  1670. StatBestJumpText1.Text = "Jump: " ..tostring(PlayerJumpName)
  1671. local JumpplrStatus = game.Players[PlayerJumpName].leaderstats.Status
  1672. if JumpplrStatus.Value == "Criminal" then
  1673. StatBestJumpText1.TextColor3 = Color3.new(1, 0.1, 1)
  1674. elseif JumpplrStatus.Value == "Lawbreaker" then
  1675. StatBestJumpText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  1676. elseif JumpplrStatus.Value == "Guardian" then
  1677. StatBestJumpText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  1678. elseif JumpplrStatus.Value == "Protector" then
  1679. StatBestJumpText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  1680. elseif JumpplrStatus.Value == "Supervillain" then
  1681. StatBestJumpText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  1682. elseif JumpplrStatus.Value == "Superhero" then
  1683. StatBestJumpText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  1684. else
  1685. StatBestJumpText1.TextColor3 = Color3.new(1, 1, 1)
  1686. end
  1687. local FindHum = game.Players[PlayerJumpName].Character.Humanoid
  1688. local JumpPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  1689. local JumpPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.FistStrength.Value))
  1690. local JumpPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.BodyToughness.Value))
  1691. local JumpPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.MovementSpeed.Value))
  1692. local JumpPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.JumpForce.Value))
  1693. local JumpPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerJumpName].PrivateStats.PsychicPower.Value))
  1694. ShowStatsJump2.Text = tostring(JumpPlayerHealth.. "\n" ..JumpPlayerFist.. "\n" ..JumpPlayerBody.. "\n" ..JumpPlayerSpeed.. "\n" ..JumpPlayerJump.. "\n" ..JumpPlayerPsychic)
  1695. end
  1696. wait(0.3)
  1697. end
  1698. end)
  1699.  
  1700. spawn(function()
  1701. while true do
  1702. if showtopplayerspsychicactive then
  1703. BestPlayerPsychic = 1
  1704. PlayerPsychicName = false
  1705. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1706. local PlayerPsychic = tonumber(game.Players[v.Name].PrivateStats.PsychicPower.Value)
  1707. if PlayerPsychic > tonumber(BestPlayerPsychic) then
  1708. BestPlayerPsychic = PlayerPsychic
  1709. PlayerPsychicName = tostring(v.Name)
  1710. end
  1711. end
  1712. StatBestPsychicText1.Text = "Psy: " ..tostring(PlayerPsychicName)
  1713. local PsychicplrStatus = game.Players[PlayerPsychicName].leaderstats.Status
  1714. if PsychicplrStatus.Value == "Criminal" then
  1715. StatBestPsychicText1.TextColor3 = Color3.new(1, 0.1, 1)
  1716. elseif PsychicplrStatus.Value == "Lawbreaker" then
  1717. StatBestPsychicText1.TextColor3 = Color3.new(1, 0.1, 0.1)
  1718. elseif PsychicplrStatus.Value == "Guardian" then
  1719. StatBestPsychicText1.TextColor3 = Color3.new(0.1, 0.8, 1)
  1720. elseif PsychicplrStatus.Value == "Protector" then
  1721. StatBestPsychicText1.TextColor3 = Color3.new(0.1, 0.1, 1)
  1722. elseif PsychicplrStatus.Value == "Supervillain" then
  1723. StatBestPsychicText1.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  1724. elseif PsychicplrStatus.Value == "Superhero" then
  1725. StatBestPsychicText1.TextColor3 = Color3.new(0.8, 0.8, 0)
  1726. else
  1727. StatBestPsychicText1.TextColor3 = Color3.new(1, 1, 1)
  1728. end
  1729. local FindHum = game.Players[PlayerPsychicName].Character.Humanoid
  1730. local PsychicPlayerHealth = converttoletter(string.format("%.0f", FindHum.Health))
  1731. local PsychicPlayerFist = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.FistStrength.Value))
  1732. local PsychicPlayerBody = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.BodyToughness.Value))
  1733. local PsychicPlayerSpeed = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.MovementSpeed.Value))
  1734. local PsychicPlayerJump = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.JumpForce.Value))
  1735. local PsychicPlayerPsychic = converttoletter(string.format("%.0f", game.Players[PlayerPsychicName].PrivateStats.PsychicPower.Value))
  1736. ShowStatsPsychic2.Text = tostring(PsychicPlayerHealth.. "\n" ..PsychicPlayerFist.. "\n" ..PsychicPlayerBody.. "\n" ..PsychicPlayerSpeed.. "\n" ..PsychicPlayerJump.. "\n" ..PsychicPlayerPsychic)
  1737. end
  1738. wait(0.3)
  1739. end
  1740. end)
Add Comment
Please, Sign In to add comment