Adel987654321

Super power training Simulator GUI 2

Dec 11th, 2019
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.71 KB | None | 0 0
  1. -- Open the Dev Console (F9) to read information about the GUI --
  2.  
  3. print("\nSuper Power Training Simulator LuckyGui Created by LuckyMMB @ V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\nLast updated 11th October 2018")
  4. print("\nThe Y Key activates Panic Mode and teleports you to the Spawn Point.")
  5.  
  6. local plr = game:GetService("Players").LocalPlayer
  7. local char = plr.Character
  8. local root = char.HumanoidRootPart
  9. local Plrs = game:GetService("Players")
  10. local MyPlr = Plrs.LocalPlayer
  11. local MyChar = MyPlr.Character
  12. local UIS = game:GetService'UserInputService'
  13. local RepStor = game:GetService("ReplicatedStorage")
  14. local CoreGui = game:GetService("CoreGui")
  15. local Run = game:GetService("RunService")
  16. local mouse = game.Players.LocalPlayer:GetMouse()
  17. local human = plr.Character:FindFirstChildOfClass("Humanoid")
  18. local mouse = game.Players.LocalPlayer:GetMouse()
  19.  
  20. resetplayerstat = false
  21. killplayeractive = false
  22. farmallactive = false
  23. farmfistactive = false
  24. farmbodyactive = false
  25. farmspeedactive = false
  26. farmjumpactive = false
  27. farmpsychicactive = false
  28. punchmodeactive = false
  29. ESPEnabled = false
  30. ESPLength = 10000
  31.  
  32. CharAddedEvent = { }
  33.  
  34. Plrs.PlayerAdded:connect(function(plr)
  35. if CharAddedEvent[plr.Name] == nil then
  36. CharAddedEvent[plr.Name] = plr.CharacterAdded:connect(function(char)
  37. if ESPEnabled then
  38. RemoveESP(plr)
  39. CreateESP(plr)
  40. end
  41. end)
  42. end
  43. end)
  44.  
  45. Plrs.PlayerRemoving:connect(function(plr)
  46. if CharAddedEvent[plr.Name] ~= nil then
  47. CharAddedEvent[plr.Name]:Disconnect()
  48. CharAddedEvent[plr.Name] = nil
  49. end
  50. RemoveESP(plr)
  51. end)
  52.  
  53. function UpdateESP(plr)
  54. local Find = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  55. if Find then
  56. local plrStatus = game.Players[plr.Name].leaderstats.Status
  57. if plrStatus.Value == "Criminal" or plrStatus.Value == "Lawbreaker" then
  58. Find.Frame.Names.TextColor3 = Color3.new(1, 0.1, 0.1)
  59. elseif plrStatus.Value == "Protector" or plrStatus.Value == "Guardian" then
  60. Find.Frame.Names.TextColor3 = Color3.new(0.1, 0.1, 1)
  61. elseif plrStatus.Value == "Supervillain" then
  62. Find.Frame.Names.TextColor3 = Color3.new(0.3, 0.1, 0.1)
  63. elseif plrStatus.Value == "Superhero" then
  64. Find.Frame.Names.TextColor3 = Color3.new(0.8, 0.8, 0)
  65. else
  66. Find.Frame.Names.TextColor3 = Color3.new(1, 1, 1)
  67. end
  68. Find.Frame.Dist.TextColor3 = Color3.new(1, 1, 1)
  69. Find.Frame.Health.TextColor3 = Color3.new(1, 1, 1)
  70. Find.Frame.Fist.TextColor3 = Color3.new(1, 1, 1)
  71. Find.Frame.Psychic.TextColor3 = Color3.new(1, 1, 1)
  72. local GetChar = plr.Character
  73. if MyChar and GetChar then
  74. local Find2 = MyChar:FindFirstChild("HumanoidRootPart")
  75. local Find3 = GetChar:FindFirstChild("HumanoidRootPart")
  76. local Find4 = GetChar:FindFirstChildOfClass("Humanoid")
  77. if Find2 and Find3 then
  78. local pos = Find3.Position
  79. local Dist = (Find2.Position - pos).magnitude
  80. if Dist > ESPLength then
  81. Find.Frame.Names.Visible = false
  82. Find.Frame.Dist.Visible = false
  83. Find.Frame.Health.Visible = false
  84. Find.Frame.Fist.Visible = false
  85. Find.Frame.Psychic.Visible = false
  86. return
  87. else
  88. Find.Frame.Names.Visible = true
  89. Find.Frame.Dist.Visible = true
  90. Find.Frame.Health.Visible = true
  91. Find.Frame.Fist.Visible = true
  92. Find.Frame.Psychic.Visible = true
  93. end
  94. Find.Frame.Dist.Text = "Distance: " .. string.format("%.0f", Dist)
  95. --Find.Frame.Pos.Text = "(X: " .. string.format("%.0f", pos.X) .. ", Y: " .. string.format("%.0f", pos.Y) .. ", Z: " .. string.format("%.0f", pos.Z) .. ")"
  96. if Find4 then
  97. Find.Frame.Health.Text = "Health: " .. string.format("%.0f", Find4.Health)
  98. Find.Frame.Fist.Text = "Fist: " .. string.format("%.0f", game.Players[plr.Name].PrivateStats.FistStrength.Value)
  99. Find.Frame.Psychic.Text = "Psychic: " .. string.format("%.0f", game.Players[plr.Name].PrivateStats.PsychicPower.Value)
  100. else
  101. Find.Frame.Health.Text = ""
  102. Find.Frame.Fist.Text = ""
  103. Find.Frame.Psychic.Text = ""
  104. end
  105. end
  106. end
  107. end
  108. end
  109.  
  110. function RemoveESP(plr)
  111. local ESP = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  112. if ESP then
  113. ESP:Destroy()
  114. end
  115. end
  116.  
  117. function CreateESP(plr)
  118. if plr ~= nil then
  119. local GetChar = plr.Character
  120. if not GetChar then return end
  121. local GetHead do
  122. repeat wait() until GetChar:FindFirstChild("Head")
  123. end
  124. GetHead = GetChar.Head
  125.  
  126. local bb = Instance.new("BillboardGui", CoreGui)
  127. bb.Adornee = GetHead
  128. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  129. bb.AlwaysOnTop = true
  130. bb.Size = UDim2.new(0, 5, 0, 5)
  131. bb.StudsOffset = Vector3.new(0, 3, 0)
  132. bb.Name = "ESP_" .. plr.Name
  133.  
  134. local frame = Instance.new("Frame", bb)
  135. frame.ZIndex = 10
  136. frame.BackgroundTransparency = 1
  137. frame.Size = UDim2.new(1, 0, 1, 0)
  138.  
  139. local TxtName = Instance.new("TextLabel", frame)
  140. TxtName.Name = "Names"
  141. TxtName.ZIndex = 10
  142. TxtName.Text = plr.Name
  143. TxtName.BackgroundTransparency = 1
  144. TxtName.Position = UDim2.new(0, 0, 0, -45)
  145. TxtName.Size = UDim2.new(1, 0, 10, 0)
  146. TxtName.Font = "SourceSansBold"
  147. TxtName.TextColor3 = Color3.new(0, 0, 0)
  148. TxtName.TextSize = 14
  149. TxtName.TextStrokeTransparency = 0.5
  150.  
  151. local TxtDist = Instance.new("TextLabel", frame)
  152. TxtDist.Name = "Dist"
  153. TxtDist.ZIndex = 10
  154. TxtDist.Text = ""
  155. TxtDist.BackgroundTransparency = 1
  156. TxtDist.Position = UDim2.new(0, 0, 0, -35)
  157. TxtDist.Size = UDim2.new(1, 0, 10, 0)
  158. TxtDist.Font = "SourceSansBold"
  159. TxtDist.TextColor3 = Color3.new(0, 0, 0)
  160. TxtDist.TextSize = 15
  161. TxtDist.TextStrokeTransparency = 0.5
  162.  
  163. local TxtHealth = Instance.new("TextLabel", frame)
  164. TxtHealth.Name = "Health"
  165. TxtHealth.ZIndex = 10
  166. TxtHealth.Text = ""
  167. TxtHealth.BackgroundTransparency = 1
  168. TxtHealth.Position = UDim2.new(0, 0, 0, -25)
  169. TxtHealth.Size = UDim2.new(1, 0, 10, 0)
  170. TxtHealth.Font = "SourceSansBold"
  171. TxtHealth.TextColor3 = Color3.new(0, 0, 0)
  172. TxtHealth.TextSize = 15
  173. TxtHealth.TextStrokeTransparency = 0.5
  174.  
  175. local TxtFist = Instance.new("TextLabel", frame)
  176. TxtFist.Name = "Fist"
  177. TxtFist.ZIndex = 10
  178. TxtFist.Text = ""
  179. TxtFist.BackgroundTransparency = 1
  180. TxtFist.Position = UDim2.new(0, 0, 0, -15)
  181. TxtFist.Size = UDim2.new(1, 0, 10, 0)
  182. TxtFist.Font = "SourceSansBold"
  183. TxtFist.TextColor3 = Color3.new(0, 0, 0)
  184. TxtFist.TextSize = 15
  185. TxtFist.TextStrokeTransparency = 0.5
  186.  
  187. local TxtPsychic = Instance.new("TextLabel", frame)
  188. TxtPsychic.Name = "Psychic"
  189. TxtPsychic.ZIndex = 10
  190. TxtPsychic.Text = ""
  191. TxtPsychic.BackgroundTransparency = 1
  192. TxtPsychic.Position = UDim2.new(0, 0, 0, -5)
  193. TxtPsychic.Size = UDim2.new(1, 0, 10, 0)
  194. TxtPsychic.Font = "SourceSansBold"
  195. TxtPsychic.TextColor3 = Color3.new(0, 0, 0)
  196. TxtPsychic.TextSize = 15
  197. TxtPsychic.TextStrokeTransparency = 0.5
  198. end
  199. end
  200.  
  201. local MainGUI = Instance.new("ScreenGui")
  202. local TopFrame = Instance.new("Frame")
  203. local MainFrame = Instance.new("Frame")
  204. local Open = Instance.new("TextButton")
  205. local Close = Instance.new("TextButton")
  206. local Minimize = Instance.new("TextButton")
  207. local PunchMode = Instance.new("TextButton")
  208. local WayPoints = Instance.new("TextButton")
  209. local WayPointsFrame = Instance.new("Frame")
  210. local FarmExp = Instance.new("TextButton")
  211. local FarmExpFrame = Instance.new("Frame")
  212. local ShowLocation = Instance.new("TextLabel")
  213. local SetLocation = Instance.new("TextButton")
  214. local TPLocation = Instance.new("TextButton")
  215. local Location1 = Instance.new("TextButton")
  216. local Location2 = Instance.new("TextButton")
  217. local Location3 = Instance.new("TextButton")
  218. local Location4 = Instance.new("TextButton")
  219. local Location5 = Instance.new("TextButton")
  220. local Location6 = Instance.new("TextButton")
  221. local Location7 = Instance.new("TextButton")
  222. local Location8 = Instance.new("TextButton")
  223. local Location9 = Instance.new("TextButton")
  224. local Location10 = Instance.new("TextButton")
  225. local FarmAll = Instance.new("TextButton")
  226. local FarmFist = Instance.new("TextButton")
  227. local FarmBody = Instance.new("TextButton")
  228. local FarmSpeed = Instance.new("TextButton")
  229. local FarmJump = Instance.new("TextButton")
  230. local FarmPsychic = Instance.new("TextButton")
  231. local FarmBodyLabel = Instance.new("TextLabel")
  232. local FarmSpeedLabel = Instance.new("TextLabel")
  233. local esptrack = Instance.new("TextButton")
  234. local ESPLength = Instance.new("TextBox")
  235. local Extras = Instance.new("TextButton")
  236. local ExtrasFrame = Instance.new("Frame")
  237. local AnnoyNameLabel = Instance.new("TextLabel")
  238. local AnnoyName = Instance.new("TextBox")
  239. local AnnoyStart = Instance.new("TextButton")
  240. local KillPlayerStart = Instance.new("TextButton")
  241. local TptoPlayer = Instance.new("TextButton")
  242. local PanicToggleLabel = Instance.new("TextLabel")
  243. local PanicToggle = Instance.new("TextBox")
  244. local ReJoinServer = Instance.new("TextButton")
  245. local InfoScreen = Instance.new("TextButton")
  246. local InfoFrame = Instance.new("Frame")
  247. local InfoText1 = Instance.new("TextLabel")
  248. local PlayerName = Instance.new("TextBox")
  249. local StatsFrame = Instance.new("Frame")
  250. local ShowStats1 = Instance.new("TextLabel")
  251. local ShowStats2 = Instance.new("TextLabel")
  252. local StatNameSet = Instance.new("TextButton")
  253.  
  254. -- Properties
  255.  
  256. MainGUI.Name = "MainGUI"
  257. MainGUI.Parent = game.CoreGui
  258. MainGUI.ResetOnSpawn = false
  259. local MainCORE = game.CoreGui["MainGUI"]
  260.  
  261. TopFrame.Name = "TopFrame"
  262. TopFrame.Parent = MainGUI
  263. TopFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  264. TopFrame.BorderColor3 = Color3.new(0, 0, 0)
  265. TopFrame.BackgroundTransparency = 1
  266. TopFrame.Position = UDim2.new(0.75, -30, 0, -27)
  267. TopFrame.Size = UDim2.new(0, 80, 0, 20)
  268. TopFrame.Visible = false
  269.  
  270. Open.Name = "Open"
  271. Open.Parent = TopFrame
  272. Open.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  273. Open.BorderColor3 = Color3.new(0, 1, 0)
  274. Open.Size = UDim2.new(0, 60, 0, 20)
  275. Open.Font = Enum.Font.Fantasy
  276. Open.Text = "Open"
  277. Open.TextColor3 = Color3.new(1, 1, 1)
  278. Open.TextSize = 18
  279. Open.Selectable = true
  280. Open.TextWrapped = true
  281.  
  282. MainFrame.Name = "MainFrame"
  283. MainFrame.Parent = MainGUI
  284. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  285. MainFrame.BackgroundTransparency = 0.5
  286. MainFrame.BorderSizePixel = 0
  287. MainFrame.Active = true
  288. MainFrame.Selectable = true
  289. MainFrame.Draggable = true
  290. MainFrame.Position = UDim2.new(0.5, -323.5, 0, -32)
  291. MainFrame.Size = UDim2.new(0, 647, 0, 30)
  292. MainFrame.Visible = true
  293.  
  294. Close.Name = "Close"
  295. Close.Parent = MainFrame
  296. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  297. Close.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  298. Close.Position = UDim2.new(0, 10, 0, 5)
  299. Close.Size = UDim2.new(0, 20, 0, 20)
  300. Close.Font = Enum.Font.Fantasy
  301. Close.Text = "X"
  302. Close.TextColor3 = Color3.new(1, 0, 0)
  303. Close.TextSize = 17
  304. Close.TextScaled = true
  305. Close.TextWrapped = true
  306.  
  307. Minimize.Name = "Minimize"
  308. Minimize.Parent = MainFrame
  309. Minimize.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  310. Minimize.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  311. Minimize.Position = UDim2.new(0, 35, 0, 5)
  312. Minimize.Size = UDim2.new(0, 20, 0, 20)
  313. Minimize.Font = Enum.Font.Fantasy
  314. Minimize.Text = "-"
  315. Minimize.TextColor3 = Color3.new(1, 0, 1)
  316. Minimize.TextSize = 17
  317. Minimize.TextScaled = true
  318. Minimize.TextWrapped = true
  319.  
  320. WayPoints.Name = "WayPoints"
  321. WayPoints.Parent = MainFrame
  322. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  323. WayPoints.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  324. WayPoints.Position = UDim2.new(0, 60, 0, 5)
  325. WayPoints.Size = UDim2.new(0, 65, 0, 20)
  326. WayPoints.Font = Enum.Font.Fantasy
  327. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  328. WayPoints.Text = "Teleport"
  329. WayPoints.TextSize = 17
  330. WayPoints.TextWrapped = true
  331.  
  332. WayPointsFrame.Name = "WayPointsFrame"
  333. WayPointsFrame.Parent = MainFrame
  334. WayPointsFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  335. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  336. WayPointsFrame.BackgroundTransparency = 0.2
  337. WayPointsFrame.Position = UDim2.new(0, 1, 0, 33)
  338. WayPointsFrame.Size = UDim2.new(0, 375, 0, 230)
  339. WayPointsFrame.Visible = false
  340.  
  341. FarmExp.Name = "FarmExp"
  342. FarmExp.Parent = MainFrame
  343. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  344. FarmExp.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  345. FarmExp.Position = UDim2.new(0, 130, 0, 5)
  346. FarmExp.Size = UDim2.new(0, 80, 0, 20)
  347. FarmExp.Font = Enum.Font.Fantasy
  348. FarmExp.TextColor3 = Color3.new(1, 1, 1)
  349. FarmExp.Text = "Farm Exp"
  350. FarmExp.TextSize = 17
  351. FarmExp.TextWrapped = true
  352.  
  353. FarmExpFrame.Name = "FarmExpFrame"
  354. FarmExpFrame.Parent = MainFrame
  355. FarmExpFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  356. FarmExpFrame.BorderColor3 = Color3.new(0, 0, 0)
  357. FarmExpFrame.BackgroundTransparency = 0.2
  358. FarmExpFrame.Position = UDim2.new(0, 65, 0, 33)
  359. FarmExpFrame.Size = UDim2.new(0, 210, 0, 165)
  360. FarmExpFrame.Visible = false
  361.  
  362. ShowLocation.Name = "ShowLocation"
  363. ShowLocation.Parent = WayPointsFrame
  364. ShowLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  365. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  366. ShowLocation.BorderColor3 = Color3.new(0, 0, 0)
  367. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  368. ShowLocation.Size = UDim2.new(0, 170, 0, 20)
  369. ShowLocation.Font = Enum.Font.Fantasy
  370. ShowLocation.Text = "Current Location"
  371. ShowLocation.TextWrapped = true
  372. ShowLocation.TextSize = 15
  373.  
  374. SetLocation.Name = "SetLocation"
  375. SetLocation.Parent = WayPointsFrame
  376. SetLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  377. SetLocation.TextColor3 = Color3.new(1, 1, 1)
  378. SetLocation.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  379. SetLocation.Position = UDim2.new(0, 180, 0, 5)
  380. SetLocation.Size = UDim2.new(0, 120, 0, 20)
  381. SetLocation.Font = Enum.Font.Fantasy
  382. SetLocation.Text = "Set Location"
  383. SetLocation.TextWrapped = true
  384. SetLocation.TextSize = 16
  385.  
  386. TPLocation.Name = "TPLocation"
  387. TPLocation.Parent = WayPointsFrame
  388. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  389. TPLocation.TextColor3 = Color3.new(1, 1, 1)
  390. TPLocation.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  391. TPLocation.Position = UDim2.new(0, 305, 0, 5)
  392. TPLocation.Size = UDim2.new(0, 65, 0, 20)
  393. TPLocation.Font = Enum.Font.Fantasy
  394. TPLocation.Text = "Tp to"
  395. TPLocation.TextWrapped = true
  396. TPLocation.TextSize = 16
  397.  
  398. Location1.Name = "Location1"
  399. Location1.Parent = WayPointsFrame
  400. Location1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  401. Location1.TextColor3 = Color3.new(1, 1, 1)
  402. Location1.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  403. Location1.Position = UDim2.new(0, 5, 0, 30)
  404. Location1.Size = UDim2.new(0, 365, 0, 20)
  405. Location1.Font = Enum.Font.Fantasy
  406. Location1.Text = "Teleport to Spawn Location (Safe Zone)"
  407. Location1.TextWrapped = true
  408. Location1.TextSize = 16
  409.  
  410. Location2.Name = "Location2"
  411. Location2.Parent = WayPointsFrame
  412. Location2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  413. Location2.TextColor3 = Color3.new(1, 1, 1)
  414. Location2.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  415. Location2.Position = UDim2.new(0, 5, 0, 55)
  416. Location2.Size = UDim2.new(0, 365, 0, 20)
  417. Location2.Font = Enum.Font.Fantasy
  418. Location2.Text = "Teleport to Rock [10x Fist Strength]"
  419. Location2.TextWrapped = true
  420. Location2.TextSize = 16
  421.  
  422. Location7.Name = "Location7"
  423. Location7.Parent = WayPointsFrame
  424. Location7.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  425. Location7.TextColor3 = Color3.new(1, 1, 1)
  426. Location7.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  427. Location7.Position = UDim2.new(0, 5, 0, 80)
  428. Location7.Size = UDim2.new(0, 365, 0, 20)
  429. Location7.Font = Enum.Font.Fantasy
  430. Location7.Text = "Teleport to Crystal [100x Fist Strength]"
  431. Location7.TextWrapped = true
  432. Location7.TextSize = 16
  433.  
  434. Location3.Name = "Location3"
  435. Location3.Parent = WayPointsFrame
  436. Location3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  437. Location3.TextColor3 = Color3.new(1, 1, 1)
  438. Location3.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  439. Location3.Position = UDim2.new(0, 5, 0, 105)
  440. Location3.Size = UDim2.new(0, 365, 0, 20)
  441. Location3.Font = Enum.Font.Fantasy
  442. Location3.Text = "Tp to City Port Training 1 [5x BT]: 100 BT required"
  443. Location3.TextWrapped = true
  444. Location3.TextSize = 16
  445.  
  446. Location4.Name = "Location4"
  447. Location4.Parent = WayPointsFrame
  448. Location4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  449. Location4.TextColor3 = Color3.new(1, 1, 1)
  450. Location4.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  451. Location4.Position = UDim2.new(0, 5, 0, 130)
  452. Location4.Size = UDim2.new(0, 365, 0, 20)
  453. Location4.Font = Enum.Font.Fantasy
  454. Location4.Text = "Tp to City Port Training 2 [10x BT]: 10k BT required"
  455. Location4.TextWrapped = true
  456. Location4.TextSize = 16
  457.  
  458. Location5.Name = "Location5"
  459. Location5.Parent = WayPointsFrame
  460. Location5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  461. Location5.TextColor3 = Color3.new(1, 1, 1)
  462. Location5.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  463. Location5.Position = UDim2.new(0, 5, 0, 155)
  464. Location5.Size = UDim2.new(0, 365, 0, 20)
  465. Location5.Font = Enum.Font.Fantasy
  466. Location5.Text = "Tp to Ice Mountain [20x BT]: 100k BT required"
  467. Location5.TextWrapped = true
  468. Location5.TextSize = 16
  469.  
  470. Location6.Name = "Location6"
  471. Location6.Parent = WayPointsFrame
  472. Location6.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  473. Location6.TextColor3 = Color3.new(1, 1, 1)
  474. Location6.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  475. Location6.Position = UDim2.new(0, 5, 0, 180)
  476. Location6.Size = UDim2.new(0, 365, 0, 20)
  477. Location6.Font = Enum.Font.Fantasy
  478. Location6.Text = "Tp to Tornado [50x BT]: 1M BT required"
  479. Location6.TextWrapped = true
  480. Location6.TextSize = 16
  481.  
  482. Location8.Name = "Location8"
  483. Location8.Parent = WayPointsFrame
  484. Location8.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  485. Location8.TextColor3 = Color3.new(1, 1, 1)
  486. Location8.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  487. Location8.Position = UDim2.new(0, 5, 0, 205)
  488. Location8.Size = UDim2.new(0, 365, 0, 20)
  489. Location8.Font = Enum.Font.Fantasy
  490. Location8.Text = "Tp to Volcano [100x BT]: 10M BT required"
  491. Location8.TextWrapped = true
  492. Location8.TextSize = 16
  493.  
  494. FarmAll.Name = "FarmAll"
  495. FarmAll.Parent = FarmExpFrame
  496. FarmAll.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  497. FarmAll.TextColor3 = Color3.new(1, 1, 1)
  498. FarmAll.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  499. FarmAll.Position = UDim2.new(0, 5, 0, 5)
  500. FarmAll.Size = UDim2.new(0, 200, 0, 20)
  501. FarmAll.Font = Enum.Font.Fantasy
  502. FarmAll.Text = "Farm All: OFF"
  503. FarmAll.TextWrapped = true
  504. FarmAll.TextSize = 16
  505.  
  506. FarmFist.Name = "FarmFist"
  507. FarmFist.Parent = FarmExpFrame
  508. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  509. FarmFist.TextColor3 = Color3.new(1, 1, 1)
  510. FarmFist.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  511. FarmFist.Position = UDim2.new(0, 5, 0, 40)
  512. FarmFist.Size = UDim2.new(0, 200, 0, 20)
  513. FarmFist.Font = Enum.Font.Fantasy
  514. FarmFist.Text = "Farm Fist Strength: OFF"
  515. FarmFist.TextWrapped = true
  516. FarmFist.TextSize = 16
  517.  
  518. FarmBody.Name = "FarmBody"
  519. FarmBody.Parent = FarmExpFrame
  520. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  521. FarmBody.TextColor3 = Color3.new(1, 1, 1)
  522. FarmBody.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  523. FarmBody.Position = UDim2.new(0, 5, 0, 65)
  524. FarmBody.Size = UDim2.new(0, 200, 0, 20)
  525. FarmBody.Font = Enum.Font.Fantasy
  526. FarmBody.Text = "Farm Body Toughness: OFF"
  527. FarmBody.TextWrapped = true
  528. FarmBody.TextSize = 16
  529.  
  530. FarmSpeed.Name = "FarmSpeed"
  531. FarmSpeed.Parent = FarmExpFrame
  532. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  533. FarmSpeed.TextColor3 = Color3.new(1, 1, 1)
  534. FarmSpeed.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  535. FarmSpeed.Position = UDim2.new(0, 5, 0, 90)
  536. FarmSpeed.Size = UDim2.new(0, 200, 0, 20)
  537. FarmSpeed.Font = Enum.Font.Fantasy
  538. FarmSpeed.Text = "Farm Movement Speed: OFF"
  539. FarmSpeed.TextWrapped = true
  540. FarmSpeed.TextSize = 16
  541.  
  542. FarmJump.Name = "FarmJump"
  543. FarmJump.Parent = FarmExpFrame
  544. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  545. FarmJump.TextColor3 = Color3.new(1, 1, 1)
  546. FarmJump.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  547. FarmJump.Position = UDim2.new(0, 5, 0, 115)
  548. FarmJump.Size = UDim2.new(0, 200, 0, 20)
  549. FarmJump.Font = Enum.Font.Fantasy
  550. FarmJump.Text = "Farm Jump Force: OFF"
  551. FarmJump.TextWrapped = true
  552. FarmJump.TextSize = 16
  553.  
  554. FarmPsychic.Name = "FarmPsychic"
  555. FarmPsychic.Parent = FarmExpFrame
  556. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  557. FarmPsychic.TextColor3 = Color3.new(1, 1, 1)
  558. FarmPsychic.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  559. FarmPsychic.Position = UDim2.new(0, 5, 0, 140)
  560. FarmPsychic.Size = UDim2.new(0, 200, 0, 20)
  561. FarmPsychic.Font = Enum.Font.Fantasy
  562. FarmPsychic.Text = "Farm Psychic Power: OFF"
  563. FarmPsychic.TextWrapped = true
  564. FarmPsychic.TextSize = 16
  565.  
  566. FarmBodyLabel.Name = "FarmBodyLabel"
  567. FarmBodyLabel.Parent = FarmExpFrame
  568. FarmBodyLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  569. FarmBodyLabel.TextColor3 = Color3.new(1, 1, 1)
  570. FarmBodyLabel.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  571. FarmBodyLabel.Position = UDim2.new(0, 213, 0, 65)
  572. FarmBodyLabel.Size = UDim2.new(0, 200, 0, 100)
  573. FarmBodyLabel.Font = Enum.Font.Fantasy
  574. 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."
  575. FarmBodyLabel.TextSize = 16
  576. FarmBodyLabel.TextWrapped = true
  577. FarmBodyLabel.Visible = false
  578.  
  579. FarmSpeedLabel.Name = "FarmSpeedLabel"
  580. FarmSpeedLabel.Parent = FarmExpFrame
  581. FarmSpeedLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  582. FarmSpeedLabel.TextColor3 = Color3.new(1, 1, 1)
  583. FarmSpeedLabel.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  584. FarmSpeedLabel.Position = UDim2.new(0, 213, 0, 65)
  585. FarmSpeedLabel.Size = UDim2.new(0, 200, 0, 100)
  586. FarmSpeedLabel.Font = Enum.Font.Fantasy
  587. 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."
  588. FarmSpeedLabel.TextSize = 16
  589. FarmSpeedLabel.TextWrapped = true
  590. FarmSpeedLabel.Visible = false
  591.  
  592. PunchMode.Name = "PunchMode"
  593. PunchMode.Parent = MainFrame
  594. PunchMode.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  595. PunchMode.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  596. PunchMode.Position = UDim2.new(0, 215, 0, 5)
  597. PunchMode.Size = UDim2.new(0, 125, 0, 20)
  598. PunchMode.TextColor3 = Color3.new(1, 1, 1)
  599. PunchMode.Font = Enum.Font.Fantasy
  600. PunchMode.Text = "Punch Mode: OFF"
  601. PunchMode.TextSize = 16
  602. PunchMode.TextWrapped = true
  603.  
  604. esptrack.Name = "esptrack"
  605. esptrack.Parent = MainFrame
  606. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  607. esptrack.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  608. esptrack.Position = UDim2.new(0, 345, 0, 5)
  609. esptrack.Size = UDim2.new(0, 40, 0, 20)
  610. esptrack.TextColor3 = Color3.new(1, 1, 1)
  611. esptrack.Font = Enum.Font.Fantasy
  612. esptrack.Text = "ESP"
  613. esptrack.TextSize = 16
  614. esptrack.TextWrapped = true
  615.  
  616. Extras.Name = "Extras"
  617. Extras.Parent = MainFrame
  618. Extras.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  619. Extras.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  620. Extras.Position = UDim2.new(0, 390, 0, 5)
  621. Extras.Size = UDim2.new(0, 50, 0, 20)
  622. Extras.TextColor3 = Color3.new(1, 1, 1)
  623. Extras.Font = Enum.Font.Fantasy
  624. Extras.Text = "Extras"
  625. Extras.TextSize = 16
  626. Extras.TextWrapped = true
  627.  
  628. ExtrasFrame.Name = "ExtrasFrame"
  629. ExtrasFrame.Parent = MainFrame
  630. ExtrasFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  631. ExtrasFrame.BorderColor3 = Color3.new(0, 0, 0)
  632. ExtrasFrame.BackgroundTransparency = 0.2
  633. ExtrasFrame.Position = UDim2.new(0, 323, 0, 33)
  634. ExtrasFrame.Size = UDim2.new(0, 160, 0, 151)
  635. ExtrasFrame.Visible = false
  636.  
  637. AnnoyName.Name = "AnnoyName"
  638. AnnoyName.Parent = ExtrasFrame
  639. AnnoyName.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  640. AnnoyName.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  641. AnnoyName.Position = UDim2.new(0, 5, 0, 5)
  642. AnnoyName.Size = UDim2.new(0, 150, 0, 20)
  643. AnnoyName.TextColor3 = Color3.new(1, 1, 1)
  644. AnnoyName.Font = Enum.Font.Fantasy
  645. AnnoyName.Text = tostring(MyPlr.Name)
  646. AnnoyName.TextSize = 14
  647. AnnoyName.TextScaled = false
  648. AnnoyName.TextWrapped = true
  649.  
  650. TptoPlayer.Name = "TptoPlayer"
  651. TptoPlayer.Parent = ExtrasFrame
  652. TptoPlayer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  653. TptoPlayer.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  654. TptoPlayer.Position = UDim2.new(0, 5, 0, 26)
  655. TptoPlayer.Size = UDim2.new(0, 150, 0, 20)
  656. TptoPlayer.TextColor3 = Color3.new(1, 1, 1)
  657. TptoPlayer.Font = Enum.Font.Fantasy
  658. TptoPlayer.Text = "TP to Player"
  659. TptoPlayer.TextSize = 16
  660. TptoPlayer.TextWrapped = true
  661.  
  662. AnnoyStart.Name = "AnnoyStart"
  663. AnnoyStart.Parent = ExtrasFrame
  664. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  665. AnnoyStart.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  666. AnnoyStart.Position = UDim2.new(0, 5, 0, 47)
  667. AnnoyStart.Size = UDim2.new(0, 150, 0, 20)
  668. AnnoyStart.TextColor3 = Color3.new(1, 1, 1)
  669. AnnoyStart.Font = Enum.Font.Fantasy
  670. AnnoyStart.Text = "TP Spam Player: OFF"
  671. AnnoyStart.TextSize = 16
  672. AnnoyStart.TextWrapped = true
  673.  
  674. KillPlayerStart.Name = "KillPlayerStart"
  675. KillPlayerStart.Parent = ExtrasFrame
  676. KillPlayerStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  677. KillPlayerStart.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  678. KillPlayerStart.Position = UDim2.new(0, 5, 0, 68)
  679. KillPlayerStart.Size = UDim2.new(0, 150, 0, 20)
  680. KillPlayerStart.TextColor3 = Color3.new(1, 1, 1)
  681. KillPlayerStart.Font = Enum.Font.Fantasy
  682. KillPlayerStart.Text = "Kill Player: OFF"
  683. KillPlayerStart.TextSize = 16
  684. KillPlayerStart.TextWrapped = true
  685.  
  686. PanicToggleLabel.Name = "PanicToggleLabel"
  687. PanicToggleLabel.Parent = ExtrasFrame
  688. PanicToggleLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  689. PanicToggleLabel.BorderSizePixel = 0
  690. PanicToggleLabel.Position = UDim2.new(0, 5, 0, 98)
  691. PanicToggleLabel.Size = UDim2.new(0, 125, 0, 20)
  692. PanicToggleLabel.TextColor3 = Color3.new(1, 1, 1)
  693. PanicToggleLabel.Font = Enum.Font.Fantasy
  694. PanicToggleLabel.Text = "Panic KeyBind"
  695. PanicToggleLabel.TextSize = 16
  696. PanicToggleLabel.TextWrapped = true
  697.  
  698. PanicToggle.Name = "PanicToggle"
  699. PanicToggle.Parent = ExtrasFrame
  700. PanicToggle.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  701. PanicToggle.BorderColor3 = Color3.new(0.8, 0.8, 0.8)
  702. PanicToggle.Position = UDim2.new(0, 130, 0, 99)
  703. PanicToggle.Size = UDim2.new(0, 25, 0, 18)
  704. PanicToggle.TextColor3 = Color3.new(1, 1, 1)
  705. PanicToggle.Font = Enum.Font.Fantasy
  706. PanicToggle.Text = "y"
  707. PanicToggle.TextSize = 16
  708. PanicToggle.TextWrapped = true
  709.  
  710. ReJoinServer.Name = "ReJoinServer"
  711. ReJoinServer.Parent = ExtrasFrame
  712. ReJoinServer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  713. ReJoinServer.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  714. ReJoinServer.Position = UDim2.new(0, 5, 0, 126)
  715. ReJoinServer.Size = UDim2.new(0, 150, 0, 20)
  716. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  717. ReJoinServer.Font = Enum.Font.Fantasy
  718. ReJoinServer.Text = "ReJoin Server"
  719. ReJoinServer.TextSize = 16
  720. ReJoinServer.TextWrapped = true
  721.  
  722. InfoScreen.Name = "InfoScreen"
  723. InfoScreen.Parent = MainFrame
  724. InfoScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  725. InfoScreen.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  726. InfoScreen.Position = UDim2.new(0, 445, 0, 5)
  727. InfoScreen.Size = UDim2.new(0, 37, 0, 20)
  728. InfoScreen.BackgroundTransparency = 0
  729. InfoScreen.Font = Enum.Font.Fantasy
  730. InfoScreen.TextColor3 = Color3.new(1, 1, 1)
  731. InfoScreen.Text = "Info"
  732. InfoScreen.TextSize = 17
  733. InfoScreen.TextWrapped = true
  734.  
  735. InfoText1.Name = "InfoText1"
  736. InfoText1.Parent = MainFrame
  737. InfoText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  738. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  739. InfoText1.BackgroundTransparency = 0
  740. InfoText1.Position = UDim2.new(0, 293, 0, 32)
  741. InfoText1.Size = UDim2.new(0, 190, 0, 230)
  742. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  743. InfoText1.Font = Enum.Font.Fantasy
  744. InfoText1.Text = "This Gui was created by LuckyMMB@V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\n\nCredits:\n-racist dolphin for the original ESP script which I edited and customised and whoever found the remotes for farming exp."
  745. InfoText1.TextSize = 15
  746. InfoText1.TextWrapped = true
  747. InfoText1.Visible = false
  748. InfoText1.ZIndex = 7
  749. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  750.  
  751. PlayerName.Name = "PlayerName"
  752. PlayerName.Parent = MainFrame
  753. PlayerName.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  754. PlayerName.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  755. PlayerName.Position = UDim2.new(0, 487, 0, 5)
  756. PlayerName.Size = UDim2.new(0, 150, 0, 20)
  757. PlayerName.Font = Enum.Font.Fantasy
  758. PlayerName.TextColor3 = Color3.new(1, 1, 1)
  759. PlayerName.Text = tostring(MyPlr.Name)
  760. PlayerName.TextSize = 15
  761. PlayerName.TextScaled = true
  762. PlayerName.TextWrapped = false
  763.  
  764. StatsFrame.Name = "StatsFrame"
  765. StatsFrame.Parent = MainFrame
  766. StatsFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  767. StatsFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  768. StatsFrame.BackgroundTransparency = 0
  769. StatsFrame.Position = UDim2.new(0, 487, 0, 31)
  770. StatsFrame.Size = UDim2.new(0, 151, 0, 90)
  771. StatsFrame.Visible = false
  772.  
  773. ShowStats1.Name = "ShowStats1"
  774. ShowStats1.Parent = StatsFrame
  775. ShowStats1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  776. ShowStats1.BackgroundTransparency = 1
  777. ShowStats1.Position = UDim2.new(0, 0, 0, 0)
  778. ShowStats1.Size = UDim2.new(0, 50, 0, 90)
  779. ShowStats1.Font = Enum.Font.Fantasy
  780. ShowStats1.TextColor3 = Color3.new(1, 1, 1)
  781. ShowStats1.Text = " "
  782. ShowStats1.TextSize = 15
  783. ShowStats1.TextXAlignment = Enum.TextXAlignment.Right
  784.  
  785. ShowStats2.Name = "ShowStats2"
  786. ShowStats2.Parent = StatsFrame
  787. ShowStats2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  788. ShowStats2.BackgroundTransparency = 1
  789. ShowStats2.Position = UDim2.new(0, 55, 0, 0)
  790. ShowStats2.Size = UDim2.new(0, 93, 0, 90)
  791. ShowStats2.Font = Enum.Font.Fantasy
  792. ShowStats2.TextColor3 = Color3.new(1, 1, 1)
  793. ShowStats2.Text = "Stats"
  794. ShowStats2.TextSize = 15
  795. ShowStats2.TextXAlignment = Enum.TextXAlignment.Right
  796.  
  797. -- Close --
  798.  
  799. Open.MouseButton1Down:connect(function()
  800. TopFrame.Visible = false
  801. MainFrame.Visible = true
  802. end)
  803.  
  804. Minimize.MouseButton1Down:connect(function()
  805. TopFrame.Visible = true
  806. MainFrame.Visible = false
  807. end)
  808.  
  809. Close.MouseButton1Down:connect(function()
  810. MainGUI:Destroy()
  811. end)
  812.  
  813. -- Menus --
  814.  
  815. local Menus = {
  816. [WayPoints] = WayPointsFrame;
  817. [FarmExp] = FarmExpFrame;
  818. [Extras] = ExtrasFrame;
  819. }
  820. for button,frame in pairs(Menus) do
  821. button.MouseButton1Click:connect(function()
  822. if frame.Visible then
  823. frame.Visible = false
  824. return
  825. end
  826. for k,v in pairs(Menus) do
  827. v.Visible = v == frame
  828. end
  829. end)
  830. end
  831.  
  832. FarmBody.MouseEnter:connect(function()
  833. FarmBodyLabel.Visible = true
  834. end)
  835.  
  836. FarmBody.MouseLeave:connect(function()
  837. FarmBodyLabel.Visible = false
  838. end)
  839.  
  840. FarmSpeed.MouseEnter:connect(function()
  841. FarmSpeedLabel.Visible = true
  842. end)
  843.  
  844. FarmSpeed.MouseLeave:connect(function()
  845. FarmSpeedLabel.Visible = false
  846. end)
  847.  
  848. FarmJump.MouseEnter:connect(function()
  849. FarmSpeedLabel.Visible = true
  850. end)
  851.  
  852. FarmJump.MouseLeave:connect(function()
  853. FarmSpeedLabel.Visible = false
  854. end)
  855.  
  856. InfoScreen.MouseEnter:connect(function()
  857. InfoText1.Visible = true
  858. end)
  859.  
  860. InfoScreen.MouseLeave:connect(function()
  861. InfoText1.Visible = false
  862. end)
  863.  
  864. -- Show Location --
  865.  
  866. local curlocation = coroutine.wrap(function()
  867. while true do
  868. function round(num, numDecimalPlaces)
  869. local mult = 10^(numDecimalPlaces or 0)
  870. return math.floor(num * mult + 0.5) / mult
  871. end
  872.  
  873. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  874. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  875. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  876. ShowLocation.Text = "Coords: "..LocationX..", "..LocationY..", "..LocationZ
  877. wait(0.5)
  878. end
  879. end)
  880.  
  881. curlocation()
  882.  
  883. -- Set Locations --
  884.  
  885. SetLocation.MouseButton1Down:connect(function()
  886. function round(num, numDecimalPlaces)
  887. local mult = 10^(numDecimalPlaces or 0)
  888. return math.floor(num * mult + 0.5) / mult
  889. end
  890. setlocationx = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  891. setlocationy = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  892. setlocationz = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  893. print("Set Custom Location: "..setlocationx..", "..setlocationy..", "..setlocationz)
  894. SetLocation.Text = setlocationx..","..setlocationy..","..setlocationz
  895. CustomLocationSet = true
  896. end)
  897.  
  898. --- TP to custom location ---
  899.  
  900. TPLocation.MouseButton1Down:connect(function()
  901. if CustomLocationSet == true then
  902. workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = CFrame.new(setlocationx, setlocationy, setlocationz)
  903. end
  904. end)
  905.  
  906. Location1.MouseButton1Click:connect(function()
  907. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = (workspace:FindFirstChild('SpawnLocation', true).CFrame) * CFrame.new(0, 2, 0)
  908. end)
  909.  
  910. Location2.MouseButton1Click:connect(function()
  911. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(409, 271, 978)
  912. end)
  913.  
  914. Location3.MouseButton1Click:connect(function()
  915. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(365, 250, -445)
  916. end)
  917.  
  918. Location4.MouseButton1Click:connect(function()
  919. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(358, 254, -445)
  920. end)
  921.  
  922. Location5.MouseButton1Click:connect(function()
  923. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1624, 270, 2262)
  924. end)
  925.  
  926. Location6.MouseButton1Click:connect(function()
  927. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2307, 976, 1068)
  928. end)
  929.  
  930. Location7.MouseButton1Click:connect(function()
  931. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2279, 1944, 1053)
  932. end)
  933.  
  934. Location8.MouseButton1Click:connect(function()
  935. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2006, 741, -1806)
  936. end)
  937.  
  938. -- ESP Stuff --
  939.  
  940. Run:BindToRenderStep("UpdateESP", Enum.RenderPriority.Character.Value, function()
  941. for _, v in next, Plrs:GetPlayers() do
  942. UpdateESP(v)
  943. end
  944. end)
  945.  
  946. -- Farm Exp --
  947.  
  948. FarmAll.MouseButton1Click:Connect(function()
  949. if farmallactive ~= true then
  950. farmallactive = true
  951. farmfistactive = true
  952. farmbodyactive = true
  953. farmspeedactive = true
  954. farmpsychicactive = true
  955. farmjumpactive = true
  956. FarmAll.BackgroundColor3 = Color3.new(0, 0.5, 0)
  957. FarmAll.Text = "Farm All: ON"
  958. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  959. else
  960. farmallactive = false
  961. farmfistactive = false
  962. farmbodyactive = false
  963. farmspeedactive = false
  964. farmpsychicactive = false
  965. farmjumpactive = false
  966. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  967. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  968. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  969. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  970. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  971. FarmAll.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  972. FarmAll.Text = "Farm All: OFF"
  973. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  974. end
  975. end)
  976.  
  977. FarmFist.MouseButton1Click:Connect(function()
  978. if farmfistactive ~= true then
  979. farmfistactive = true
  980. FarmFist.BackgroundColor3 = Color3.new(0, 0.5, 0)
  981. FarmFist.Text = "Farm Fist Strength: ON"
  982. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  983. else
  984. farmfistactive = false
  985. FarmFist.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  986. FarmFist.Text = "Farm Fist Strength: OFF"
  987. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  988. end
  989. end)
  990.  
  991. FarmBody.MouseButton1Click:Connect(function()
  992. if farmbodyactive ~= true then
  993. farmbodyactive = true
  994. FarmBody.BackgroundColor3 = Color3.new(0, 0.5, 0)
  995. FarmBody.Text = "Farm Body Strength: ON"
  996. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  997. else
  998. farmbodyactive = false
  999. FarmBody.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1000. FarmBody.Text = "Farm Body Strength: OFF"
  1001. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1002. end
  1003. end)
  1004.  
  1005. FarmSpeed.MouseButton1Click:Connect(function()
  1006. if farmspeedactive ~= true then
  1007. farmspeedactive = true
  1008. FarmSpeed.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1009. FarmSpeed.Text = "Farm Speed Strength: ON"
  1010. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1011. else
  1012. farmspeedactive = false
  1013. FarmSpeed.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1014. FarmSpeed.Text = "Farm Speed Strength: OFF"
  1015. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1016. end
  1017. end)
  1018.  
  1019. FarmJump.MouseButton1Click:Connect(function()
  1020. if farmjumpactive ~= true then
  1021. farmjumpactive = true
  1022. FarmJump.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1023. FarmJump.Text = "Farm Jump Strength: ON"
  1024. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1025. else
  1026. farmjumpactive = false
  1027. FarmJump.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1028. FarmJump.Text = "Farm Jump Strength: OFF"
  1029. FarmExp.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1030. end
  1031. end)
  1032.  
  1033. FarmPsychic.MouseButton1Click:Connect(function()
  1034. if farmpsychicactive ~= true then
  1035. farmpsychicactive = true
  1036. FarmPsychic.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1037. FarmPsychic.Text = "Farm Psychic Strength: ON"
  1038. FarmExp.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1039. else
  1040. farmpsychicactive = false
  1041. FarmPsychic.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1042. FarmPsychic.Text = "Farm Psychic Strength: OFF"
  1043. end
  1044. end)
  1045.  
  1046. spawn(function()
  1047. while true do
  1048. if farmfistactive then
  1049. while farmfistactive do
  1050. local Event = game:GetService("ReplicatedStorage").RemoteEvent
  1051. local fistarguments = {"+FS5", "+FS4", "+FS3", "+FS2", "+FS1"}
  1052. for i,v in pairs(fistarguments) do
  1053. Event:FireServer({[1] = v})
  1054. wait()
  1055. end
  1056. end
  1057. end
  1058. wait(1)
  1059. end
  1060. end)
  1061.  
  1062. spawn(function()
  1063. while true do
  1064. if farmbodyactive then
  1065. while farmbodyactive do
  1066. local bodyarguments = {"+BT5", "+BT4", "+BT3", "+BT2", "+BT1"}
  1067. local event = game.ReplicatedStorage.RemoteEvent
  1068. for i,v in pairs(bodyarguments) do
  1069. event:FireServer({[1] = v})
  1070. wait()
  1071. end
  1072. end
  1073. end
  1074. wait(1)
  1075. end
  1076. end)
  1077.  
  1078. spawn(function()
  1079. while true do
  1080. if farmspeedactive then
  1081. while farmspeedactive do
  1082. local speedarguments = {"+MS5", "+MS4", "+MS3", "+MS2", "+MS1"}
  1083. local event = game.ReplicatedStorage.RemoteEvent
  1084. for i,v in pairs(speedarguments) do
  1085. event:FireServer({[1] = v})
  1086. wait()
  1087. end
  1088. end
  1089. end
  1090. wait(1)
  1091. end
  1092. end)
  1093.  
  1094. spawn(function()
  1095. while true do
  1096. if farmjumpactive then
  1097. while farmjumpactive do
  1098. local jumparguments = {"+JF5", "+JF4", "+JF3", "+JF2", "+JF1"}
  1099. local event = game.ReplicatedStorage.RemoteEvent
  1100. for i,v in pairs(jumparguments) do
  1101. event:FireServer({[1] = v})
  1102. wait()
  1103. end
  1104. end
  1105. end
  1106. wait(1)
  1107. end
  1108. end)
  1109.  
  1110. spawn(function()
  1111. while true do
  1112. if farmpsychicactive then
  1113. while farmpsychicactive do
  1114. local psychicarguments = {"+PP5", "+PP4", "+PP3", "+PP2", "+PP1"}
  1115. local event = game.ReplicatedStorage.RemoteEvent
  1116. for i,v in pairs(psychicarguments) do
  1117. event:FireServer({[1] = v})
  1118. wait()
  1119. end
  1120. end
  1121. end
  1122. wait(1)
  1123. end
  1124. end)
  1125.  
  1126. -- Punch Mode --
  1127.  
  1128. PunchMode.MouseButton1Click:Connect(function()
  1129. if punchmodeactive ~= true then
  1130. punchmodeactive = true
  1131. PunchMode.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1132. PunchMode.Text = "Punch Mode: ON"
  1133. else
  1134. punchmodeactive = false
  1135. PunchMode.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1136. PunchMode.Text = "Punch Mode: OFF"
  1137. end
  1138. end)
  1139.  
  1140. spawn(function()
  1141. while true do
  1142. if punchmodeactive then
  1143. while punchmodeactive do
  1144. game.ReplicatedStorage.RemoteEvent:FireServer("Skill_Punch", "Left")
  1145. game.ReplicatedStorage.RemoteEvent:FireServer("Skill_Punch", "Right")
  1146. wait(0.05)
  1147. end
  1148. end
  1149. wait(1)
  1150. end
  1151. end)
  1152.  
  1153. -- Annoy Player --
  1154.  
  1155. AnnoyStart.MouseButton1Click:Connect(function()
  1156. if annoyplayeractive ~= true then
  1157. annoyplayeractive = true
  1158. AnnoyStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1159. AnnoyStart.Text = "TP Spam Player: ON"
  1160. else
  1161. annoyplayeractive = false
  1162. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1163. AnnoyStart.Text = "TP Spam Player: OFF"
  1164. end
  1165. end)
  1166.  
  1167. spawn(function()
  1168. while true do
  1169. wait(0.5)
  1170. if annoyplayeractive then
  1171. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1172. if v.Name:lower():find(AnnoyName.Text:lower()) then
  1173. if v.Name == "LuckyMMB" or v.Name == "LuckyMMB2" or v.Name == "LuckyMMB2017" or v.Name == "Deadly_Banana" then
  1174. print("You can't TP Spam this player.")
  1175. else
  1176. player = game.Players.LocalPlayer.Character
  1177. local startpos = player.HumanoidRootPart.CFrame
  1178. v.Character.Humanoid.Died:connect(function()
  1179. annoyplayeractive = false
  1180. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1181. AnnoyStart.Text = "TP Spam Player: OFF"
  1182. end)
  1183. player.Humanoid.Died:connect(function()
  1184. annoyplayeractive = false
  1185. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1186. AnnoyStart.Text = "TP Spam Player: OFF"
  1187. end)
  1188.  
  1189. while annoyplayeractive == true do
  1190. player.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  1191. wait(.005)
  1192. end
  1193. player.HumanoidRootPart.CFrame = startpos
  1194. end
  1195. end
  1196. end
  1197. end
  1198. end
  1199. end)
  1200.  
  1201. TptoPlayer.MouseButton1Click:Connect(function()
  1202. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1203. if v.Name:lower():find(AnnoyName.Text:lower()) then
  1204. if v.Name ~= tostring(MyPlr.Name) then
  1205. player = game.Players.LocalPlayer.Character
  1206. player.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(3, 0, 3)
  1207. end
  1208. end
  1209. end
  1210. end)
  1211.  
  1212. -- TP Kill Player --
  1213.  
  1214. KillPlayerStart.MouseButton1Click:Connect(function()
  1215. if killplayeractive ~= true then
  1216. local player=game.Players.LocalPlayer.Character
  1217. player.Humanoid:Remove()
  1218. Instance.new('Humanoid',player)
  1219. wait()
  1220. KillPlayerStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1221. KillPlayerStart.Text = "Kill Player: ON"
  1222. annoyplayeractive = false
  1223. AnnoyStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1224. AnnoyStart.Text = "TP Spam Player: OFF"
  1225. killplayeractive = true
  1226. else
  1227. killplayeractive = false
  1228. KillPlayerStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1229. KillPlayerStart.Text = "Kill Player: OFF"
  1230. end
  1231. end)
  1232.  
  1233. spawn(function()
  1234. while true do
  1235. wait(0.5)
  1236. if killplayeractive then
  1237. player = game.Players.LocalPlayer.Character
  1238. if string.lower(AnnoyName.Text):find(string.lower("all")) then
  1239. local startpos = player.HumanoidRootPart.CFrame
  1240. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2300, 1000, 1070)
  1241. for i = 1, 100 do
  1242. while killplayeractive do
  1243. wait()
  1244. local loc = CFrame.new(-2300, 1000, 1070)
  1245. for i, SelectedPlayer in pairs(game.Players:GetPlayers()) do
  1246. if SelectedPlayer.Name ~= game:GetService("Players").LocalPlayer.Name then
  1247. SelectedPlayer.Character:SetPrimaryPartCFrame(loc)
  1248. end
  1249. end
  1250. end
  1251. end
  1252. player.HumanoidRootPart.CFrame = startpos
  1253. else
  1254. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1255. if string.lower(v.Name):find(string.lower(AnnoyName.Text)) then
  1256. if v.Name == "LuckyMMB" or v.Name == "LuckyMMB2" or v.Name == "LuckyMMB2017" or v.Name == "Deadly_Banana" then
  1257. print("You can't TP Kill this player.")
  1258. else
  1259. player = game.Players.LocalPlayer.Character
  1260. v.Character.Humanoid.Died:connect(function()
  1261. killplayeractive = false
  1262. KillPlayerStart.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1263. KillPlayerStart.Text = "Kill Player: OFF"
  1264. end)
  1265. print("Killing: " ..v.Name)
  1266. local startpos = player.HumanoidRootPart.CFrame
  1267. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2300, 1000, 1070)
  1268. for i = 1, 100 do
  1269. while killplayeractive do
  1270. wait()
  1271. local loc = CFrame.new(-2300, 1000, 1070)
  1272. v.Character:SetPrimaryPartCFrame(loc)
  1273. end
  1274. end
  1275. player.HumanoidRootPart.CFrame = startpos
  1276. end
  1277. end
  1278. end
  1279. end
  1280. end
  1281. end
  1282. end)
  1283.  
  1284. mouse.KeyDown:connect(function(key)
  1285. if key == tostring(PanicToggle.Text) then
  1286. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = (workspace:FindFirstChild('SpawnLocation', true).CFrame) * CFrame.new(0, 2, 0)
  1287. end
  1288. end)
  1289.  
  1290. -- Remove Weather Effect --
  1291.  
  1292. game.Lighting.Changed:connect(function()
  1293. game.Lighting.TimeOfDay = "12:00:00"
  1294. game.Lighting.FogEnd = 9999
  1295. game.Lighting.Brightness = 1
  1296. end)
  1297.  
  1298. -- ESP --
  1299.  
  1300. esptrack.MouseButton1Click:connect(function()
  1301. ESPEnabled = not ESPEnabled
  1302. if ESPEnabled then
  1303. esptrack.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1304. for _, v in next, Plrs:GetPlayers() do
  1305. if v ~= MyPlr then
  1306. if CharAddedEvent[v.Name] == nil then
  1307. CharAddedEvent[v.Name] = v.CharacterAdded:connect(function(Char)
  1308. if ESPEnabled then
  1309. RemoveESP(v)
  1310. CreateESP(v)
  1311. end
  1312. repeat wait() until Char:FindFirstChild("HumanoidRootPart")
  1313. end)
  1314. end
  1315. RemoveESP(v)
  1316. CreateESP(v)
  1317. end
  1318. end
  1319. else
  1320. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1321. for _, v in next, Plrs:GetPlayers() do
  1322. RemoveESP(v)
  1323. end
  1324. end
  1325. end)
  1326.  
  1327. -- Display Player Info --
  1328.  
  1329. spawn(function()
  1330. while true do
  1331. statplayer = tostring(PlayerName.Text)
  1332. StatsFrame.Visible = false
  1333. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1334. if string.lower(v.Name) == string.lower(statplayer) then
  1335. local FindHum = v.Character:FindFirstChildOfClass("Humanoid")
  1336. local PlayerHealth = tostring(string.format("%.0f", FindHum.Health))
  1337. local PlayerFist = tostring(string.format("%.0f", game.Players[v.Name].PrivateStats.FistStrength.Value))
  1338. local PlayerBody = tostring(string.format("%.0f", game.Players[v.Name].PrivateStats.BodyToughness.Value))
  1339. local PlayerSpeed = tostring(string.format("%.0f", game.Players[v.Name].PrivateStats.MovementSpeed.Value))
  1340. local PlayerJump = tostring(string.format("%.0f", game.Players[v.Name].PrivateStats.JumpForce.Value))
  1341. local PlayerPsychic = tostring(string.format("%.0f", game.Players[v.Name].PrivateStats.PsychicPower.Value))
  1342. ShowStats1.Text = "Health:\nFist:\nBody:\nSpeed:\nJump:\nPsychic:"
  1343. ShowStats2.Text = PlayerHealth.. "\n" ..PlayerFist.. "\n" ..PlayerBody.. "\n" ..PlayerSpeed.. "\n" ..PlayerJump.. "\n" ..PlayerPsychic
  1344. StatsFrame.Visible = true
  1345. end
  1346. end
  1347. wait(0.25)
  1348. end
  1349. end)
  1350.  
  1351. --- ReJoin Server ---
  1352.  
  1353. ReJoinServer.MouseButton1Click:connect(function()
  1354. local placeId = 2202352383
  1355. game:GetService("TeleportService"):Teleport(placeId)
  1356. end)
Add Comment
Please, Sign In to add comment