Advertisement
Ivansoso

SPTS Origin script tests

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