RoSploitzer

Booga Booga GUI

Jul 3rd, 2019
882
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 61.91 KB | None | 0 0
  1. -- BoogaBooga Gui Created by LuckyMMB @ V3rmillion.net --
  2. -- Discord https://discord.gg/GKzJnUC --
  3. -- Last updated 26th March 2018 --
  4.  
  5. --[[
  6. After activating Fly Mode just move your mouse where you want to go and
  7. press the r key to move there.
  8.  
  9. God mode is useful if you are about to die, however once activated you
  10. cannot use any tools so dont use it when you want to mine or fight.
  11.  
  12. The bring items option was patched (partly) so it will bring items but
  13. they will not harvest if they came from too far away. This is best used
  14. by selecting the items (or essence) you want to pick up of the item you
  15. are mining. They will then be picked up immediately so others cant steal
  16. your loot.
  17.  
  18. The q key activates Panic Mode (the same as the Panic Button does). Just
  19. press or click and you will shoot up. Just make sure you do it before
  20. you are hit or you will still take damage.
  21.  
  22. The g key will make you walk faster to evade enemies or to get somewhere
  23. faster. You can try setting walkmult to a higher value to walk faster but
  24. you might get kicked from the game. Default value is 1.26.
  25. ]]
  26.  
  27. local plr = game.Players.LocalPlayer
  28. local char = plr.Character
  29. local root = char.HumanoidRootPart
  30. local RepStor = game:GetService("ReplicatedStorage")
  31. local CoreGui = game:GetService("CoreGui")
  32. local Run = game:GetService("RunService")
  33. local Plrs = game:GetService("Players")
  34. local MyPlr = Plrs.LocalPlayer
  35. local MyChar = MyPlr.Character
  36. local mouse = game.Players.LocalPlayer:GetMouse()
  37. CharAddedEvent = { }
  38.  
  39. flyactive = false
  40. tpitemsonState = false
  41. godmodeactive = false
  42. ESPEnabled = false
  43. ESPLength = 10000
  44. walkfastactive = false
  45. walkmult = 1.26
  46.  
  47. game.Lighting.FogEnd = 1200000
  48. game.Lighting.Brightness = 3
  49. game.Lighting.GlobalShadows = false
  50.  
  51. Plrs.PlayerAdded:connect(function(plr)
  52. if CharAddedEvent[plr.Name] == nil then
  53. CharAddedEvent[plr.Name] = plr.CharacterAdded:connect(function(char)
  54. if ESPEnabled then
  55. RemoveESP(plr)
  56. CreateESP(plr)
  57. end
  58. end)
  59. end
  60. end)
  61.  
  62. Plrs.PlayerRemoving:connect(function(plr)
  63. if CharAddedEvent[plr.Name] ~= nil then
  64. CharAddedEvent[plr.Name]:Disconnect()
  65. CharAddedEvent[plr.Name] = nil
  66. end
  67. RemoveESP(plr)
  68. end)
  69.  
  70. function UpdateESP(plr)
  71. local Find = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  72. if Find then
  73. Find.Frame.Names.TextColor3 = Color3.new(1, 1, 1)
  74. Find.Frame.Dist.TextColor3 = Color3.new(1, 1, 1)
  75. Find.Frame.Health.TextColor3 = Color3.new(1, 1, 1)
  76. local GetChar = plr.Character
  77. if MyChar and GetChar then
  78. local Find2 = MyChar:FindFirstChild("HumanoidRootPart")
  79. local Find3 = GetChar:FindFirstChild("HumanoidRootPart")
  80. local Find4 = GetChar:FindFirstChildOfClass("Humanoid")
  81. if Find2 and Find3 then
  82. local pos = Find3.Position
  83. local Dist = (Find2.Position - pos).magnitude
  84. if Dist > ESPLength then
  85. Find.Frame.Names.Visible = false
  86. Find.Frame.Dist.Visible = false
  87. Find.Frame.Health.Visible = false
  88. return
  89. else
  90. Find.Frame.Names.Visible = true
  91. Find.Frame.Dist.Visible = true
  92. Find.Frame.Health.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. else
  99. Find.Frame.Health.Text = ""
  100. end
  101. end
  102. end
  103. end
  104. end
  105.  
  106. function RemoveESP(plr)
  107. local ESP = CoreGui:FindFirstChild("ESP_" .. plr.Name)
  108. if ESP then
  109. ESP:Destroy()
  110. end
  111. end
  112.  
  113. function CreateESP(plr)
  114. if plr ~= nil then
  115. local GetChar = plr.Character
  116. if not GetChar then return end
  117. local GetHead do
  118. repeat wait() until GetChar:FindFirstChild("Head")
  119. end
  120. GetHead = GetChar.Head
  121.  
  122. local bb = Instance.new("BillboardGui", CoreGui)
  123. bb.Adornee = GetHead
  124. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  125. bb.AlwaysOnTop = true
  126. bb.Size = UDim2.new(0, 5, 0, 5)
  127. bb.StudsOffset = Vector3.new(0, 3, 0)
  128. bb.Name = "ESP_" .. plr.Name
  129.  
  130. local frame = Instance.new("Frame", bb)
  131. frame.ZIndex = 10
  132. frame.BackgroundTransparency = 1
  133. frame.Size = UDim2.new(1, 0, 1, 0)
  134.  
  135. local TxtName = Instance.new("TextLabel", frame)
  136. TxtName.Name = "Names"
  137. TxtName.ZIndex = 10
  138. TxtName.Text = plr.Name
  139. TxtName.BackgroundTransparency = 1
  140. TxtName.Position = UDim2.new(0, 0, 0, -45)
  141. TxtName.Size = UDim2.new(1, 0, 10, 0)
  142. TxtName.Font = "SourceSansBold"
  143. TxtName.TextColor3 = Color3.new(0, 0, 0)
  144. TxtName.TextSize = 13
  145. TxtName.TextStrokeTransparency = 0.5
  146.  
  147. local TxtDist = Instance.new("TextLabel", frame)
  148. TxtDist.Name = "Dist"
  149. TxtDist.ZIndex = 10
  150. TxtDist.Text = ""
  151. TxtDist.BackgroundTransparency = 1
  152. TxtDist.Position = UDim2.new(0, 0, 0, -35)
  153. TxtDist.Size = UDim2.new(1, 0, 10, 0)
  154. TxtDist.Font = "SourceSansBold"
  155. TxtDist.TextColor3 = Color3.new(0, 0, 0)
  156. TxtDist.TextSize = 15
  157. TxtDist.TextStrokeTransparency = 0.5
  158.  
  159. local TxtHealth = Instance.new("TextLabel", frame)
  160. TxtHealth.Name = "Health"
  161. TxtHealth.ZIndex = 10
  162. TxtHealth.Text = ""
  163. TxtHealth.BackgroundTransparency = 1
  164. TxtHealth.Position = UDim2.new(0, 0, 0, -25)
  165. TxtHealth.Size = UDim2.new(1, 0, 10, 0)
  166. TxtHealth.Font = "SourceSansBold"
  167. TxtHealth.TextColor3 = Color3.new(0, 0, 0)
  168. TxtHealth.TextSize = 15
  169. TxtHealth.TextStrokeTransparency = 0.5
  170. end
  171. end
  172.  
  173. local MainGUI = Instance.new("ScreenGui")
  174. local TopFrame = Instance.new("Frame")
  175. local MainFrame = Instance.new("Frame")
  176. local Open = Instance.new("TextButton")
  177. local Close = Instance.new("TextButton")
  178. local Minimize = Instance.new("TextButton")
  179. local Fly = Instance.new("TextButton")
  180. local FlyHelp1 = Instance.new("TextLabel")
  181. local God = Instance.new("TextButton")
  182. local GodHelp1 = Instance.new("TextLabel")
  183. local JumpPower = Instance.new("TextButton")
  184. local JumpText = Instance.new("TextBox")
  185. local WayPoints = Instance.new("TextButton")
  186. local WayPointsFrame = Instance.new("Frame")
  187. local ShowLocation = Instance.new("TextLabel")
  188. local SetLocation = Instance.new("TextButton")
  189. local TPLocation = Instance.new("TextButton")
  190. local TPLabel1 = Instance.new("TextLabel")
  191. local TPIsland1 = Instance.new("TextButton")
  192. local TPIsland2 = Instance.new("TextButton")
  193. local TPIsland3 = Instance.new("TextButton")
  194. local MovetolocationText1 = Instance.new("TextLabel")
  195. local AduriteCave = Instance.new("TextButton")
  196. local AncientCave = Instance.new("TextButton")
  197. local TeleportMagnetite = Instance.new("TextButton")
  198. local IceIsland = Instance.new("TextButton")
  199. local MainIsland = Instance.new("TextButton")
  200. local StarterIsland = Instance.new("TextButton")
  201. local esptrack = Instance.new("TextButton")
  202. local ESPLength = Instance.new("TextBox")
  203. local PanicButton = Instance.new("TextButton")
  204. local CancelMoveTo = Instance.new("TextButton")
  205. local TPItems = Instance.new("TextButton")
  206. local TPItemsFrame = Instance.new("Frame")
  207. local TPItemsLabel1 = Instance.new("TextLabel")
  208. local TPItemsStart = Instance.new("TextButton")
  209. local TPItem1 = Instance.new("TextButton")
  210. local TPItem2 = Instance.new("TextButton")
  211. local TPItem3 = Instance.new("TextButton")
  212. local TPItem4 = Instance.new("TextButton")
  213. local TPItem5 = Instance.new("TextButton")
  214. local TPItem6 = Instance.new("TextButton")
  215. local TPItem7 = Instance.new("TextButton")
  216. local TPItem8 = Instance.new("TextButton")
  217. local TPItem9 = Instance.new("TextButton")
  218. local TPItem9a = Instance.new("TextButton")
  219. local TPItem10 = Instance.new("TextButton")
  220. local TPItem11 = Instance.new("TextButton")
  221. local TPItem12 = Instance.new("TextButton")
  222. local TPItem12c = Instance.new("TextButton")
  223. local TPItem13 = Instance.new("TextButton")
  224. local TPItem14 = Instance.new("TextButton")
  225. local TPItem15 = Instance.new("TextButton")
  226. local TPItem16 = Instance.new("TextButton")
  227. local TPItem17 = Instance.new("TextButton")
  228. local TPItem18 = Instance.new("TextButton")
  229. local TPItem19 = Instance.new("TextButton")
  230. local TPItem20 = Instance.new("TextButton")
  231. local TPItem21 = Instance.new("TextButton")
  232. local InfoScreen = Instance.new("TextButton")
  233. local InfoFrame = Instance.new("Frame")
  234. local ReJoinServer = Instance.new("TextButton")
  235. local InfoText1 = Instance.new("TextLabel")
  236.  
  237. -- Properties
  238.  
  239. MainGUI.Name = "MainGUI"
  240. MainGUI.Parent = game.CoreGui
  241. local MainCORE = game.CoreGui["MainGUI"]
  242.  
  243. TopFrame.Name = "TopFrame"
  244. TopFrame.Parent = MainGUI
  245. TopFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  246. TopFrame.BorderColor3 = Color3.new(0, 0, 0)
  247. TopFrame.BackgroundTransparency = 1
  248. TopFrame.Position = UDim2.new(0.75, -30, 0, -27)
  249. TopFrame.Size = UDim2.new(0, 80, 0, 20)
  250. TopFrame.Visible = false
  251.  
  252. Open.Name = "Open"
  253. Open.Parent = TopFrame
  254. Open.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  255. Open.BorderColor3 = Color3.new(0, 1, 0)
  256. Open.Size = UDim2.new(0, 60, 0, 20)
  257. Open.Font = Enum.Font.Fantasy
  258. Open.Text = "Open"
  259. Open.TextColor3 = Color3.new(1, 1, 1)
  260. Open.TextSize = 18
  261. Open.Selectable = true
  262. Open.TextWrapped = true
  263.  
  264. MainFrame.Name = "MainFrame"
  265. MainFrame.Parent = MainGUI
  266. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  267. MainFrame.BackgroundTransparency = 0.5
  268. MainFrame.BorderSizePixel = 0
  269. MainFrame.Active = true
  270. MainFrame.Selectable = true
  271. MainFrame.Draggable = true
  272. MainFrame.Position = UDim2.new(0.5, -362, 0, 0)
  273. MainFrame.Size = UDim2.new(0, 725, 0, 30)
  274. MainFrame.Visible = true
  275.  
  276. Close.Name = "Close"
  277. Close.Parent = MainFrame
  278. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  279. Close.BorderColor3 = Color3.new(0, 1, 0)
  280. Close.Position = UDim2.new(0, 10, 0, 5)
  281. Close.Size = UDim2.new(0, 20, 0, 20)
  282. Close.Font = Enum.Font.Fantasy
  283. Close.Text = "X"
  284. Close.TextColor3 = Color3.new(1, 0, 0)
  285. Close.TextSize = 17
  286. Close.TextScaled = true
  287. Close.TextWrapped = true
  288.  
  289. Minimize.Name = "Minimize"
  290. Minimize.Parent = MainFrame
  291. Minimize.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  292. Minimize.BorderColor3 = Color3.new(0, 1, 0)
  293. Minimize.Position = UDim2.new(0, 35, 0, 5)
  294. Minimize.Size = UDim2.new(0, 20, 0, 20)
  295. Minimize.Font = Enum.Font.Fantasy
  296. Minimize.Text = "-"
  297. Minimize.TextColor3 = Color3.new(1, 0, 1)
  298. Minimize.TextSize = 17
  299. Minimize.TextScaled = true
  300. Minimize.TextWrapped = true
  301.  
  302. Fly.Name = "Fly"
  303. Fly.Parent = MainFrame
  304. Fly.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  305. Fly.BorderColor3 = Color3.new(0, 1, 0)
  306. Fly.Position = UDim2.new(0, 60, 0, 5)
  307. Fly.Size = UDim2.new(0, 40, 0, 20)
  308. Fly.Font = Enum.Font.Fantasy
  309. Fly.TextColor3 = Color3.new(1, 1, 1)
  310. Fly.Text = "Fly"
  311. Fly.TextSize = 17
  312. Fly.TextWrapped = true
  313.  
  314. FlyHelp1.Name = "FlyHelp1"
  315. FlyHelp1.Parent = MainFrame
  316. FlyHelp1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  317. FlyHelp1.BorderColor3 = Color3.new(0, 0, 0)
  318. FlyHelp1.BackgroundTransparency = 0
  319. FlyHelp1.Position = UDim2.new(0, 10, 0, 32)
  320. FlyHelp1.Size = UDim2.new(0, 160, 0, 120)
  321. FlyHelp1.Font = Enum.Font.Fantasy
  322. FlyHelp1.TextColor3 = Color3.new(1, 1, 1)
  323. FlyHelp1.Text = "Click the Fly button to enable then move your mouse cursor to where you want to go and press r to fly there. To disable click the Fly button again."
  324. FlyHelp1.TextSize = 16
  325. FlyHelp1.TextWrapped = true
  326. FlyHelp1.ZIndex = 6
  327. FlyHelp1.Visible = false
  328. FlyHelp1.TextYAlignment = Enum.TextYAlignment.Top
  329.  
  330. JumpPower.Name = "JumpPower"
  331. JumpPower.Parent = MainFrame
  332. JumpPower.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  333. JumpPower.BorderColor3 = Color3.new(0, 1, 0)
  334. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  335. JumpPower.Position = UDim2.new(0, 105, 0, 5)
  336. JumpPower.Size = UDim2.new(0, 49, 0, 20)
  337. JumpPower.Font = Enum.Font.Fantasy
  338. JumpPower.Text = "Jump"
  339. JumpPower.TextSize = 17
  340.  
  341. JumpText.Name = "JumpText"
  342. JumpText.Parent = MainFrame
  343. JumpText.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  344. JumpText.BorderColor3 = Color3.new(0, 1, 0)
  345. JumpText.TextColor3 = Color3.new(1, 1, 1)
  346. JumpText.Position = UDim2.new(0, 154, 0, 5)
  347. JumpText.Size = UDim2.new(0, 36, 0, 20)
  348. JumpText.Font = Enum.Font.Fantasy
  349. JumpText.Text = "50"
  350. JumpText.TextSize = 17
  351. JumpText.TextScaled = true
  352.  
  353. God.Name = "God"
  354. God.Parent = MainFrame
  355. God.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  356. God.BorderColor3 = Color3.new(0, 1, 0)
  357. God.Position = UDim2.new(0, 195, 0, 5)
  358. God.Size = UDim2.new(0, 80, 0, 20)
  359. God.Font = Enum.Font.Fantasy
  360. God.TextColor3 = Color3.new(1, 1, 1)
  361. God.Text = "God Mode"
  362. God.TextSize = 17
  363. God.TextWrapped = true
  364.  
  365. GodHelp1.Name = "GodHelp1"
  366. GodHelp1.Parent = MainFrame
  367. GodHelp1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  368. GodHelp1.BorderColor3 = Color3.new(0, 0, 0)
  369. GodHelp1.BackgroundTransparency = 0
  370. GodHelp1.Position = UDim2.new(0, 150, 0, 32)
  371. GodHelp1.Size = UDim2.new(0, 160, 0, 165)
  372. GodHelp1.Font = Enum.Font.Fantasy
  373. GodHelp1.TextColor3 = Color3.new(1, 1, 1)
  374. GodHelp1.Text = "Clicking this will make you unaffected by Hunger or Health so you will not be able to die. However you can't use Tools or sit in rafts so its useless and can only be used for trolling or if you are about to be killed. Rejoin server to reset it."
  375. GodHelp1.TextSize = 16
  376. GodHelp1.TextWrapped = true
  377. GodHelp1.ZIndex = 6
  378. GodHelp1.Visible = false
  379. GodHelp1.TextYAlignment = Enum.TextYAlignment.Top
  380.  
  381. WayPoints.Name = "WayPoints"
  382. WayPoints.Parent = MainFrame
  383. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  384. WayPoints.BorderColor3 = Color3.new(0, 1, 0)
  385. WayPoints.Position = UDim2.new(0, 280, 0, 5)
  386. WayPoints.Size = UDim2.new(0, 70, 0, 20)
  387. WayPoints.Font = Enum.Font.Fantasy
  388. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  389. WayPoints.Text = "Teleport"
  390. WayPoints.TextSize = 17
  391. WayPoints.TextWrapped = true
  392.  
  393. WayPointsFrame.Name = "WayPointsFrame"
  394. WayPointsFrame.Parent = MainFrame
  395. WayPointsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  396. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  397. WayPointsFrame.BackgroundTransparency = 0.4
  398. WayPointsFrame.Position = UDim2.new(0, 128, 0, 32)
  399. WayPointsFrame.Size = UDim2.new(0, 375, 0, 175)
  400. WayPointsFrame.Visible = false
  401.  
  402. ShowLocation.Name = "ShowLocation"
  403. ShowLocation.Parent = WayPointsFrame
  404. ShowLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  405. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  406. ShowLocation.BorderColor3 = Color3.new(0, 0, 0)
  407. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  408. ShowLocation.Size = UDim2.new(0, 170, 0, 20)
  409. ShowLocation.Font = Enum.Font.Fantasy
  410. ShowLocation.Text = "Current Location"
  411. ShowLocation.TextWrapped = true
  412. ShowLocation.TextSize = 15
  413.  
  414. SetLocation.Name = "SetLocation"
  415. SetLocation.Parent = WayPointsFrame
  416. SetLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  417. SetLocation.TextColor3 = Color3.new(1, 1, 1)
  418. SetLocation.BorderColor3 = Color3.new(0, 1, 0)
  419. SetLocation.Position = UDim2.new(0, 180, 0, 5)
  420. SetLocation.Size = UDim2.new(0, 120, 0, 20)
  421. SetLocation.Font = Enum.Font.Fantasy
  422. SetLocation.Text = "Set Location"
  423. SetLocation.TextWrapped = true
  424. SetLocation.TextSize = 16
  425.  
  426. TPLocation.Name = "TPLocation"
  427. TPLocation.Parent = WayPointsFrame
  428. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  429. TPLocation.TextColor3 = Color3.new(1, 1, 1)
  430. TPLocation.BorderColor3 = Color3.new(0, 1, 0)
  431. TPLocation.Position = UDim2.new(0, 305, 0, 5)
  432. TPLocation.Size = UDim2.new(0, 65, 0, 20)
  433. TPLocation.Font = Enum.Font.Fantasy
  434. TPLocation.Text = "Move to"
  435. TPLocation.TextWrapped = true
  436. TPLocation.TextSize = 16
  437.  
  438. TPLabel1.Name = "TPLabel1"
  439. TPLabel1.Parent = WayPointsFrame
  440. TPLabel1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  441. TPLabel1.BackgroundTransparency = 1
  442. TPLabel1.TextColor3 = Color3.new(1, 1, 1)
  443. TPLabel1.Position = UDim2.new(0, 0, 0, 26)
  444. TPLabel1.Size = UDim2.new(0, 375, 0, 17)
  445. TPLabel1.Font = Enum.Font.Fantasy
  446. TPLabel1.Text = "Keep Jumping over any obstacles in your way or you may die"
  447. TPLabel1.TextWrapped = true
  448. TPLabel1.TextSize = 15
  449.  
  450. TPIsland1.Name = "TPIsland1"
  451. TPIsland1.Parent = WayPointsFrame
  452. TPIsland1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  453. TPIsland1.TextColor3 = Color3.new(1, 1, 1)
  454. TPIsland1.BorderColor3 = Color3.new(0, 1, 0)
  455. TPIsland1.Position = UDim2.new(0, 5, 0, 50)
  456. TPIsland1.Size = UDim2.new(0, 180, 0, 20)
  457. TPIsland1.Font = Enum.Font.Fantasy
  458. TPIsland1.Text = "Waterfall Island"
  459. TPIsland1.TextWrapped = true
  460. TPIsland1.TextSize = 16
  461.  
  462. TPIsland2.Name = "TPIsland2"
  463. TPIsland2.Parent = WayPointsFrame
  464. TPIsland2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  465. TPIsland2.TextColor3 = Color3.new(1, 1, 1)
  466. TPIsland2.BorderColor3 = Color3.new(0, 1, 0)
  467. TPIsland2.Position = UDim2.new(0, 190, 0, 50)
  468. TPIsland2.Size = UDim2.new(0, 180, 0, 20)
  469. TPIsland2.Font = Enum.Font.Fantasy
  470. TPIsland2.Text = "Ancient Tree Island"
  471. TPIsland2.TextWrapped = true
  472. TPIsland2.TextSize = 16
  473.  
  474. TPIsland3.Name = "TPIsland3"
  475. TPIsland3.Parent = WayPointsFrame
  476. TPIsland3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  477. TPIsland3.TextColor3 = Color3.new(1, 1, 1)
  478. TPIsland3.BorderColor3 = Color3.new(0, 1, 0)
  479. TPIsland3.Position = UDim2.new(0, 5, 0, 75)
  480. TPIsland3.Size = UDim2.new(0, 180, 0, 20)
  481. TPIsland3.Font = Enum.Font.Fantasy
  482. TPIsland3.Text = "Lonely God/Crystal Island"
  483. TPIsland3.TextWrapped = true
  484. TPIsland3.TextSize = 16
  485.  
  486. TeleportMagnetite.Name = "TeleportMagnetite"
  487. TeleportMagnetite.Parent = WayPointsFrame
  488. TeleportMagnetite.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  489. TeleportMagnetite.TextColor3 = Color3.new(1, 1, 1)
  490. TeleportMagnetite.BorderColor3 = Color3.new(0, 1, 0)
  491. TeleportMagnetite.Position = UDim2.new(0, 190, 0, 75)
  492. TeleportMagnetite.Size = UDim2.new(0, 180, 0, 20)
  493. TeleportMagnetite.Font = Enum.Font.Fantasy
  494. TeleportMagnetite.Text = "Go to Meteor if spawned"
  495. TeleportMagnetite.TextWrapped = true
  496. TeleportMagnetite.TextSize = 16
  497.  
  498. AduriteCave.Name = "AduriteCave"
  499. AduriteCave.Parent = WayPointsFrame
  500. AduriteCave.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  501. AduriteCave.TextColor3 = Color3.new(1, 1, 1)
  502. AduriteCave.BorderColor3 = Color3.new(0, 1, 0)
  503. AduriteCave.Position = UDim2.new(0, 5, 0, 100)
  504. AduriteCave.Size = UDim2.new(0, 180, 0, 20)
  505. AduriteCave.Font = Enum.Font.Fantasy
  506. AduriteCave.Text = "Move to Adurite Cave"
  507. AduriteCave.TextWrapped = true
  508. AduriteCave.TextSize = 16
  509.  
  510. AncientCave.Name = "AncientCave"
  511. AncientCave.Parent = WayPointsFrame
  512. AncientCave.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  513. AncientCave.TextColor3 = Color3.new(1, 1, 1)
  514. AncientCave.BorderColor3 = Color3.new(0, 1, 0)
  515. AncientCave.Position = UDim2.new(0, 190, 0, 100)
  516. AncientCave.Size = UDim2.new(0, 180, 0, 20)
  517. AncientCave.Font = Enum.Font.Fantasy
  518. AncientCave.Text = "Move to Ancient Cave"
  519. AncientCave.TextWrapped = true
  520. AncientCave.TextSize = 16
  521.  
  522. IceIsland.Name = "IceIsland"
  523. IceIsland.Parent = WayPointsFrame
  524. IceIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  525. IceIsland.TextColor3 = Color3.new(1, 1, 1)
  526. IceIsland.BorderColor3 = Color3.new(0, 1, 0)
  527. IceIsland.Position = UDim2.new(0, 5, 0, 125)
  528. IceIsland.Size = UDim2.new(0, 180, 0, 20)
  529. IceIsland.Font = Enum.Font.Fantasy
  530. IceIsland.Text = "Move to Ice Island"
  531. IceIsland.TextWrapped = true
  532. IceIsland.TextSize = 16
  533.  
  534. MainIsland.Name = "MainIsland"
  535. MainIsland.Parent = WayPointsFrame
  536. MainIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  537. MainIsland.TextColor3 = Color3.new(1, 1, 1)
  538. MainIsland.BorderColor3 = Color3.new(0, 1, 0)
  539. MainIsland.Position = UDim2.new(0, 190, 0, 125)
  540. MainIsland.Size = UDim2.new(0, 180, 0, 20)
  541. MainIsland.Font = Enum.Font.Fantasy
  542. MainIsland.Text = "Move to Main Island"
  543. MainIsland.TextWrapped = true
  544. MainIsland.TextSize = 16
  545.  
  546. StarterIsland.Name = "StarterIsland"
  547. StarterIsland.Parent = WayPointsFrame
  548. StarterIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  549. StarterIsland.TextColor3 = Color3.new(1, 1, 1)
  550. StarterIsland.BorderColor3 = Color3.new(0, 1, 0)
  551. StarterIsland.Position = UDim2.new(0, 5, 0, 150)
  552. StarterIsland.Size = UDim2.new(0, 180, 0, 20)
  553. StarterIsland.Font = Enum.Font.Fantasy
  554. StarterIsland.Text = "Move to Starter Island"
  555. StarterIsland.TextWrapped = true
  556. StarterIsland.TextSize = 16
  557.  
  558. CancelMoveTo.Name = "CancelMoveTo"
  559. CancelMoveTo.Parent = WayPointsFrame
  560. CancelMoveTo.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  561. CancelMoveTo.TextColor3 = Color3.new(1, 0, 0)
  562. CancelMoveTo.BorderColor3 = Color3.new(0, 1, 0)
  563. CancelMoveTo.Position = UDim2.new(0, 190, 0, 150)
  564. CancelMoveTo.Size = UDim2.new(0, 180, 0, 20)
  565. CancelMoveTo.Font = Enum.Font.Fantasy
  566. CancelMoveTo.Text = "Cancel Move"
  567. CancelMoveTo.TextWrapped = true
  568. CancelMoveTo.TextSize = 16
  569.  
  570. TPItems.Name = "TPItems"
  571. TPItems.Parent = MainFrame
  572. TPItems.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  573. TPItems.BorderColor3 = Color3.new(0, 1, 0)
  574. TPItems.Position = UDim2.new(0, 355, 0, 5)
  575. TPItems.Size = UDim2.new(0, 110, 0, 20)
  576. TPItems.Font = Enum.Font.Fantasy
  577. TPItems.TextColor3 = Color3.new(1, 1, 1)
  578. TPItems.Text = "TPItemsToYou"
  579. TPItems.TextSize = 17
  580. TPItems.TextWrapped = true
  581.  
  582. TPItemsFrame.Name = "TPItemsFrame"
  583. TPItemsFrame.Parent = MainFrame
  584. TPItemsFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  585. TPItemsFrame.BorderColor3 = Color3.new(0, 0, 0)
  586. TPItemsFrame.BackgroundTransparency = 0.4
  587. TPItemsFrame.Position = UDim2.new(0, 230, 0, 32)
  588. TPItemsFrame.Size = UDim2.new(0, 360, 0, 190)
  589. TPItemsFrame.Visible = false
  590.  
  591. TPItemsLabel1.Name = "TPItemsLabel1"
  592. TPItemsLabel1.Parent = TPItemsFrame
  593. TPItemsLabel1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  594. TPItemsLabel1.BackgroundTransparency = 1
  595. TPItemsLabel1.BorderColor3 = Color3.new(0, 1, 0)
  596. TPItemsLabel1.Position = UDim2.new(0, 1, 0, 0)
  597. TPItemsLabel1.Size = UDim2.new(0, 358, 0, 35)
  598. TPItemsLabel1.Font = Enum.Font.Fantasy
  599. TPItemsLabel1.TextColor3 = Color3.new(1, 1, 1)
  600. TPItemsLabel1.Text = "Select Key Words of Items you want and click Start.\nYou must be close or they wont pick up properly."
  601. TPItemsLabel1.TextSize = 17
  602. TPItemsLabel1.TextWrapped = true
  603.  
  604. TPItem1.Name = "TPItem1"
  605. TPItem1.Parent = TPItemsFrame
  606. TPItem1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  607. TPItem1.BorderColor3 = Color3.new(0, 1, 0)
  608. TPItem1.Position = UDim2.new(0, 5, 0, 40)
  609. TPItem1.Size = UDim2.new(0, 83, 0, 20)
  610. TPItem1.Font = Enum.Font.Fantasy
  611. TPItem1.TextColor3 = Color3.new(1, 1, 1)
  612. TPItem1.Text = "Adurite"
  613. TPItem1.TextSize = 17
  614. TPItem1.TextWrapped = true
  615.  
  616. TPItem2.Name = "TPItem2"
  617. TPItem2.Parent = TPItemsFrame
  618. TPItem2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  619. TPItem2.BorderColor3 = Color3.new(0, 1, 0)
  620. TPItem2.Position = UDim2.new(0, 94, 0, 40)
  621. TPItem2.Size = UDim2.new(0, 83, 0, 20)
  622. TPItem2.Font = Enum.Font.Fantasy
  623. TPItem2.TextColor3 = Color3.new(1, 1, 1)
  624. TPItem2.Text = "Armor"
  625. TPItem2.TextSize = 17
  626. TPItem2.TextWrapped = true
  627.  
  628. TPItem3.Name = "TPItem3"
  629. TPItem3.Parent = TPItemsFrame
  630. TPItem3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  631. TPItem3.BorderColor3 = Color3.new(0, 1, 0)
  632. TPItem3.Position = UDim2.new(0, 183, 0, 40)
  633. TPItem3.Size = UDim2.new(0, 83, 0, 20)
  634. TPItem3.Font = Enum.Font.Fantasy
  635. TPItem3.TextColor3 = Color3.new(1, 1, 1)
  636. TPItem3.Text = "Barley"
  637. TPItem3.TextSize = 17
  638. TPItem3.TextWrapped = true
  639.  
  640. TPItem4.Name = "TPItem4"
  641. TPItem4.Parent = TPItemsFrame
  642. TPItem4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  643. TPItem4.BorderColor3 = Color3.new(0, 1, 0)
  644. TPItem4.Position = UDim2.new(0, 272, 0, 40)
  645. TPItem4.Size = UDim2.new(0, 83, 0, 20)
  646. TPItem4.Font = Enum.Font.Fantasy
  647. TPItem4.TextColor3 = Color3.new(1, 1, 1)
  648. TPItem4.Text = "Coal"
  649. TPItem4.TextSize = 17
  650. TPItem4.TextWrapped = true
  651.  
  652. TPItem5.Name = "TPItem5"
  653. TPItem5.Parent = TPItemsFrame
  654. TPItem5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  655. TPItem5.BorderColor3 = Color3.new(0, 1, 0)
  656. TPItem5.Position = UDim2.new(0, 5, 0, 65)
  657. TPItem5.Size = UDim2.new(0, 83, 0, 20)
  658. TPItem5.Font = Enum.Font.Fantasy
  659. TPItem5.TextColor3 = Color3.new(1, 1, 1)
  660. TPItem5.Text = "Coin"
  661. TPItem5.TextSize = 17
  662. TPItem5.TextWrapped = true
  663.  
  664. TPItem6.Name = "TPItem6"
  665. TPItem6.Parent = TPItemsFrame
  666. TPItem6.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  667. TPItem6.BorderColor3 = Color3.new(0, 1, 0)
  668. TPItem6.Position = UDim2.new(0, 94, 0, 65)
  669. TPItem6.Size = UDim2.new(0, 83, 0, 20)
  670. TPItem6.Font = Enum.Font.Fantasy
  671. TPItem6.TextColor3 = Color3.new(1, 1, 1)
  672. TPItem6.Text = "Crystal"
  673. TPItem6.TextSize = 17
  674. TPItem6.TextWrapped = true
  675.  
  676. TPItem7.Name = "TPItem7"
  677. TPItem7.Parent = TPItemsFrame
  678. TPItem7.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  679. TPItem7.BorderColor3 = Color3.new(0, 1, 0)
  680. TPItem7.Position = UDim2.new(0, 183, 0, 65)
  681. TPItem7.Size = UDim2.new(0, 83, 0, 20)
  682. TPItem7.Font = Enum.Font.Fantasy
  683. TPItem7.TextColor3 = Color3.new(1, 1, 1)
  684. TPItem7.Text = "Egg"
  685. TPItem7.TextSize = 17
  686. TPItem7.TextWrapped = true
  687.  
  688. TPItem8.Name = "TPItem8"
  689. TPItem8.Parent = TPItemsFrame
  690. TPItem8.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  691. TPItem8.BorderColor3 = Color3.new(0, 1, 0)
  692. TPItem8.Position = UDim2.new(0, 272, 0, 65)
  693. TPItem8.Size = UDim2.new(0, 83, 0, 20)
  694. TPItem8.Font = Enum.Font.Fantasy
  695. TPItem8.TextColor3 = Color3.new(1, 1, 1)
  696. TPItem8.Text = "Essence"
  697. TPItem8.TextSize = 17
  698. TPItem8.TextWrapped = true
  699.  
  700. TPItem9.Name = "TPItem9"
  701. TPItem9.Parent = TPItemsFrame
  702. TPItem9.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  703. TPItem9.BorderColor3 = Color3.new(0, 1, 0)
  704. TPItem9.Position = UDim2.new(0, 5, 0, 90)
  705. TPItem9.Size = UDim2.new(0, 83, 0, 20)
  706. TPItem9.Font = Enum.Font.Fantasy
  707. TPItem9.TextColor3 = Color3.new(1, 1, 1)
  708. TPItem9.Text = "Fruit"
  709. TPItem9.TextSize = 17
  710. TPItem9.TextWrapped = true
  711.  
  712. TPItem9a.Name = "TPItem9a"
  713. TPItem9a.Parent = TPItemsFrame
  714. TPItem9a.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  715. TPItem9a.BorderColor3 = Color3.new(0, 1, 0)
  716. TPItem9a.Position = UDim2.new(0, 94, 0, 90)
  717. TPItem9a.Size = UDim2.new(0, 83, 0, 20)
  718. TPItem9a.Font = Enum.Font.Fantasy
  719. TPItem9a.TextColor3 = Color3.new(1, 1, 1)
  720. TPItem9a.Text = "Gold"
  721. TPItem9a.TextSize = 17
  722. TPItem9a.TextWrapped = true
  723.  
  724. TPItem10.Name = "TPItem10"
  725. TPItem10.Parent = TPItemsFrame
  726. TPItem10.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  727. TPItem10.BorderColor3 = Color3.new(0, 1, 0)
  728. TPItem10.Position = UDim2.new(0, 183, 0, 90)
  729. TPItem10.Size = UDim2.new(0, 83, 0, 20)
  730. TPItem10.Font = Enum.Font.Fantasy
  731. TPItem10.TextColor3 = Color3.new(1, 1, 1)
  732. TPItem10.Text = "Hide"
  733. TPItem10.TextSize = 17
  734. TPItem10.TextWrapped = true
  735.  
  736. TPItem11.Name = "TPItem11"
  737. TPItem11.Parent = TPItemsFrame
  738. TPItem11.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  739. TPItem11.BorderColor3 = Color3.new(0, 1, 0)
  740. TPItem11.Position = UDim2.new(0, 272, 0, 90)
  741. TPItem11.Size = UDim2.new(0, 83, 0, 20)
  742. TPItem11.Font = Enum.Font.Fantasy
  743. TPItem11.TextColor3 = Color3.new(1, 1, 1)
  744. TPItem11.Text = "Ice"
  745. TPItem11.TextSize = 17
  746. TPItem11.TextWrapped = true
  747.  
  748. TPItem12.Name = "TPItem12"
  749. TPItem12.Parent = TPItemsFrame
  750. TPItem12.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  751. TPItem12.BorderColor3 = Color3.new(0, 1, 0)
  752. TPItem12.Position = UDim2.new(0, 5, 0, 115)
  753. TPItem12.Size = UDim2.new(0, 83, 0, 20)
  754. TPItem12.Font = Enum.Font.Fantasy
  755. TPItem12.TextColor3 = Color3.new(1, 1, 1)
  756. TPItem12.Text = "Iron"
  757. TPItem12.TextSize = 17
  758. TPItem12.TextWrapped = true
  759.  
  760. TPItem12c.Name = "TPItem12c"
  761. TPItem12c.Parent = TPItemsFrame
  762. TPItem12c.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  763. TPItem12c.BorderColor3 = Color3.new(0, 1, 0)
  764. TPItem12c.Position = UDim2.new(0, 94, 0, 115)
  765. TPItem12c.Size = UDim2.new(0, 83, 0, 20)
  766. TPItem12c.Font = Enum.Font.Fantasy
  767. TPItem12c.TextColor3 = Color3.new(1, 1, 1)
  768. TPItem12c.Text = "Key"
  769. TPItem12c.TextSize = 17
  770. TPItem12c.TextWrapped = true
  771.  
  772. TPItem13.Name = "TPItem13"
  773. TPItem13.Parent = TPItemsFrame
  774. TPItem13.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  775. TPItem13.BorderColor3 = Color3.new(0, 1, 0)
  776. TPItem13.Position = UDim2.new(0, 183, 0, 115)
  777. TPItem13.Size = UDim2.new(0, 83, 0, 20)
  778. TPItem13.Font = Enum.Font.Fantasy
  779. TPItem13.TextColor3 = Color3.new(1, 1, 1)
  780. TPItem13.Text = "Leaves"
  781. TPItem13.TextSize = 17
  782. TPItem13.TextWrapped = true
  783.  
  784. TPItem14.Name = "TPItem14"
  785. TPItem14.Parent = TPItemsFrame
  786. TPItem14.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  787. TPItem14.BorderColor3 = Color3.new(0, 1, 0)
  788. TPItem14.Position = UDim2.new(0, 272, 0, 115)
  789. TPItem14.Size = UDim2.new(0, 83, 0, 20)
  790. TPItem14.Font = Enum.Font.Fantasy
  791. TPItem14.TextColor3 = Color3.new(1, 1, 1)
  792. TPItem14.Text = "Log"
  793. TPItem14.TextSize = 17
  794. TPItem14.TextWrapped = true
  795.  
  796. TPItem15.Name = "TPItem15"
  797. TPItem15.Parent = TPItemsFrame
  798. TPItem15.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  799. TPItem15.BorderColor3 = Color3.new(0, 1, 0)
  800. TPItem15.Position = UDim2.new(0, 5, 0, 140)
  801. TPItem15.Size = UDim2.new(0, 83, 0, 20)
  802. TPItem15.Font = Enum.Font.Fantasy
  803. TPItem15.TextColor3 = Color3.new(1, 1, 1)
  804. TPItem15.Text = "Magnetite"
  805. TPItem15.TextSize = 17
  806. TPItem15.TextWrapped = true
  807.  
  808. TPItem16.Name = "TPItem16"
  809. TPItem16.Parent = TPItemsFrame
  810. TPItem16.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  811. TPItem16.BorderColor3 = Color3.new(0, 1, 0)
  812. TPItem16.Position = UDim2.new(0, 94, 0, 140)
  813. TPItem16.Size = UDim2.new(0, 83, 0, 20)
  814. TPItem16.Font = Enum.Font.Fantasy
  815. TPItem16.TextColor3 = Color3.new(1, 1, 1)
  816. TPItem16.Text = "Meat"
  817. TPItem16.TextSize = 17
  818. TPItem16.TextWrapped = true
  819.  
  820. TPItem17.Name = "TPItem17"
  821. TPItem17.Parent = TPItemsFrame
  822. TPItem17.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  823. TPItem17.BorderColor3 = Color3.new(0, 1, 0)
  824. TPItem17.Position = UDim2.new(0, 183, 0, 140)
  825. TPItem17.Size = UDim2.new(0, 83, 0, 20)
  826. TPItem17.Font = Enum.Font.Fantasy
  827. TPItem17.TextColor3 = Color3.new(1, 1, 1)
  828. TPItem17.Text = "Raw"
  829. TPItem17.TextSize = 17
  830. TPItem17.TextWrapped = true
  831.  
  832. TPItem18.Name = "TPItem18"
  833. TPItem18.Parent = TPItemsFrame
  834. TPItem18.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  835. TPItem18.BorderColor3 = Color3.new(0, 1, 0)
  836. TPItem18.Position = UDim2.new(0, 272, 0, 140)
  837. TPItem18.Size = UDim2.new(0, 83, 0, 20)
  838. TPItem18.Font = Enum.Font.Fantasy
  839. TPItem18.TextColor3 = Color3.new(1, 1, 1)
  840. TPItem18.Text = "Steel"
  841. TPItem18.TextSize = 17
  842. TPItem18.TextWrapped = true
  843.  
  844. TPItem19.Name = "TPItem19"
  845. TPItem19.Parent = TPItemsFrame
  846. TPItem19.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  847. TPItem19.BorderColor3 = Color3.new(0, 1, 0)
  848. TPItem19.Position = UDim2.new(0, 5, 0, 165)
  849. TPItem19.Size = UDim2.new(0, 83, 0, 20)
  850. TPItem19.Font = Enum.Font.Fantasy
  851. TPItem19.TextColor3 = Color3.new(1, 1, 1)
  852. TPItem19.Text = "Stick"
  853. TPItem19.TextSize = 17
  854. TPItem19.TextWrapped = true
  855.  
  856. TPItem20.Name = "TPItem20"
  857. TPItem20.Parent = TPItemsFrame
  858. TPItem20.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  859. TPItem20.BorderColor3 = Color3.new(0, 1, 0)
  860. TPItem20.Position = UDim2.new(0, 94, 0, 165)
  861. TPItem20.Size = UDim2.new(0, 83, 0, 20)
  862. TPItem20.Font = Enum.Font.Fantasy
  863. TPItem20.TextColor3 = Color3.new(1, 1, 1)
  864. TPItem20.Text = "Stone"
  865. TPItem20.TextSize = 17
  866. TPItem20.TextWrapped = true
  867.  
  868. TPItemsStart.Name = "TPItemsStart"
  869. TPItemsStart.Parent = TPItemsFrame
  870. TPItemsStart.BackgroundColor3 = Color3.new(0.5, 0, 0)
  871. TPItemsStart.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  872. TPItemsStart.Position = UDim2.new(0, 210, 0, 165)
  873. TPItemsStart.Size = UDim2.new(0, 115, 0, 20)
  874. TPItemsStart.Font = Enum.Font.Fantasy
  875. TPItemsStart.TextColor3 = Color3.new(1, 1, 1)
  876. TPItemsStart.Text = "START"
  877. TPItemsStart.TextSize = 17
  878. TPItemsStart.TextWrapped = true
  879.  
  880. esptrack.Name = "esptrack"
  881. esptrack.Parent = MainFrame
  882. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  883. esptrack.BorderColor3 = Color3.new(0, 1, 0)
  884. esptrack.Position = UDim2.new(0, 470, 0, 5)
  885. esptrack.Size = UDim2.new(0, 40, 0, 20)
  886. esptrack.TextColor3 = Color3.new(1, 1, 1)
  887. esptrack.Font = Enum.Font.Fantasy
  888. esptrack.Text = "ESP"
  889. esptrack.TextSize = 16
  890. esptrack.TextWrapped = true
  891.  
  892. PanicButton.Name = "PanicButton"
  893. PanicButton.Parent = MainFrame
  894. PanicButton.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  895. PanicButton.BorderColor3 = Color3.new(0, 1, 0)
  896. PanicButton.Position = UDim2.new(0, 515, 0, 5)
  897. PanicButton.Size = UDim2.new(0, 50, 0, 20)
  898. PanicButton.TextColor3 = Color3.new(1, 1, 1)
  899. PanicButton.Font = Enum.Font.Fantasy
  900. PanicButton.Text = "Panic"
  901. PanicButton.TextSize = 16
  902. PanicButton.TextWrapped = true
  903.  
  904. ReJoinServer.Name = "ReJoinServer"
  905. ReJoinServer.Parent = MainFrame
  906. ReJoinServer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  907. ReJoinServer.BorderColor3 = Color3.new(0, 1, 0)
  908. ReJoinServer.Position = UDim2.new(0, 570, 0, 5)
  909. ReJoinServer.Size = UDim2.new(0, 100, 0, 20)
  910. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  911. ReJoinServer.Font = Enum.Font.Fantasy
  912. ReJoinServer.Text = "ReJoin Server"
  913. ReJoinServer.TextSize = 16
  914. ReJoinServer.TextWrapped = true
  915.  
  916. InfoScreen.Name = "InfoScreen"
  917. InfoScreen.Parent = MainFrame
  918. InfoScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  919. InfoScreen.BorderColor3 = Color3.new(0, 1, 0)
  920. InfoScreen.Position = UDim2.new(0, 675, 0, 5)
  921. InfoScreen.Size = UDim2.new(0, 40, 0, 20)
  922. InfoScreen.BackgroundTransparency = 0
  923. InfoScreen.Font = Enum.Font.Fantasy
  924. InfoScreen.TextColor3 = Color3.new(1, 1, 1)
  925. InfoScreen.Text = "Info"
  926. InfoScreen.TextSize = 17
  927. InfoScreen.TextWrapped = true
  928.  
  929. InfoText1.Name = "InfoText1"
  930. InfoText1.Parent = MainFrame
  931. InfoText1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  932. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  933. InfoText1.BackgroundTransparency = 0
  934. InfoText1.Position = UDim2.new(0, 525, 0, 32)
  935. InfoText1.Size = UDim2.new(0, 190, 0, 200)
  936. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  937. InfoText1.Font = Enum.Font.Fantasy
  938. InfoText1.Text = "This Gui was created by LuckyMMB@V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\n\nCredits:\n-ChucklezGoWild @ v3rmillion for the Island TP script.\n-S U C C @ v3rmillion for the fly script.\n-TableFlipGod on Discord for help with Item Harvester.\n-Dolphin Hacks on YouTube for the ESP script."
  939. InfoText1.TextSize = 14
  940. InfoText1.TextWrapped = true
  941. InfoText1.Visible = false
  942. InfoText1.ZIndex = 6
  943. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  944.  
  945. -- Close --
  946.  
  947. Open.MouseButton1Down:connect(function()
  948. TopFrame.Visible = false
  949. MainFrame.Visible = true
  950. end)
  951.  
  952. Minimize.MouseButton1Down:connect(function()
  953. TopFrame.Visible = true
  954. MainFrame.Visible = false
  955. end)
  956.  
  957. Close.MouseButton1Down:connect(function()
  958. MainGUI:Destroy()
  959. end)
  960.  
  961. -- Menus --
  962.  
  963. local Menus = {
  964. [WayPoints] = WayPointsFrame;
  965. [TPItems] = TPItemsFrame;
  966. }
  967. for button,frame in pairs(Menus) do
  968. button.MouseButton1Click:connect(function()
  969. if frame.Visible then
  970. frame.Visible = false
  971. return
  972. end
  973. for k,v in pairs(Menus) do
  974. v.Visible = v == frame
  975. end
  976. end)
  977. end
  978.  
  979. Fly.MouseEnter:connect(function()
  980. FlyHelp1.Visible = true
  981. end)
  982.  
  983. Fly.MouseLeave:connect(function()
  984. FlyHelp1.Visible = false
  985. end)
  986.  
  987. God.MouseEnter:connect(function()
  988. GodHelp1.Visible = true
  989. end)
  990.  
  991. God.MouseLeave:connect(function()
  992. GodHelp1.Visible = false
  993. end)
  994.  
  995. InfoScreen.MouseEnter:connect(function()
  996. InfoText1.Visible = true
  997. end)
  998.  
  999. InfoScreen.MouseLeave:connect(function()
  1000. InfoText1.Visible = false
  1001. end)
  1002.  
  1003. -- Show Location --
  1004.  
  1005. local curlocation = coroutine.wrap(function()
  1006. while true do
  1007. function round(num, numDecimalPlaces)
  1008. local mult = 10^(numDecimalPlaces or 0)
  1009. return math.floor(num * mult + 0.5) / mult
  1010. end
  1011.  
  1012. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  1013. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  1014. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  1015. ShowLocation.Text = "Coords: "..LocationX..", "..LocationY..", "..LocationZ
  1016. wait(0.5)
  1017. end
  1018. end)
  1019.  
  1020. curlocation()
  1021.  
  1022. -- ESP Stuff --
  1023.  
  1024. Run:BindToRenderStep("UpdateESP", Enum.RenderPriority.Character.Value, function()
  1025. for _, v in next, Plrs:GetPlayers() do
  1026. UpdateESP(v)
  1027. end
  1028. end)
  1029.  
  1030. -- Jump --
  1031.  
  1032. JumpPower.MouseButton1Click:connect(function()
  1033. game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpText.Text
  1034. end)
  1035.  
  1036. -- Fly --
  1037.  
  1038. Fly.MouseButton1Click:connect(function()
  1039. if flyactive ~= true then
  1040. flyactive = true
  1041. Fly.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1042. if not game.Players.LocalPlayer.Character:FindFirstChild("BodyPosition") then
  1043. game.Players.LocalPlayer.PlayerScripts.LocalHandler.Disabled = true
  1044.  
  1045. bp = Instance.new("BodyPosition")
  1046. bp.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  1047. bp.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  1048. bp.MaxForce = Vector3.new(10^4,10^4,10^4)
  1049.  
  1050. game.Players.LocalPlayer.PlayerScripts.LocalHandler.Disabled = false
  1051. mouse = game.Players.LocalPlayer:GetMouse()
  1052.  
  1053. mouse.KeyDown:connect(function(key)
  1054. if key == "r" then
  1055. bp.Position = mouse.hit.p + Vector3.new(0,5,0)
  1056. end
  1057. end)
  1058. end
  1059. else
  1060. flyactive = false
  1061. Fly.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1062. bp.MaxForce = Vector3.new(0,0,0)
  1063. end
  1064. end)
  1065.  
  1066. -- Move to Locations --
  1067.  
  1068. SetLocation.MouseButton1Down:connect(function()
  1069. function round(num, numDecimalPlaces)
  1070. local mult = 10^(numDecimalPlaces or 0)
  1071. return math.floor(num * mult + 0.5) / mult
  1072. end
  1073. setlocationx = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 0)
  1074. setlocationy = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 0)
  1075. setlocationz = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 0)
  1076. print("Set Custom Location: "..setlocationx..", "..setlocationy..", "..setlocationz)
  1077. SetLocation.Text = setlocationx..","..setlocationy..","..setlocationz
  1078. CustomLocationSet = true
  1079. end)
  1080.  
  1081. TPLocation.MouseButton1Down:connect(function()
  1082. if CustomLocationSet == true then
  1083. cancelmove = false
  1084. wait()
  1085. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1086. TPLocation.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1087. TPLocation.Text = "Moving.."
  1088. plr = game.Players.LocalPlayer
  1089. char = plr.Character
  1090. root = char.HumanoidRootPart
  1091. wait()
  1092. local pos = Vector3.new(tonumber(setlocationx), tonumber(setlocationy), tonumber(setlocationz))
  1093. print("Moving to: "..setlocationx..", "..setlocationy..", "..setlocationz)
  1094. local time = 0.1
  1095. local increment = 2
  1096. local debounce = false
  1097. local diff = pos-root.Position
  1098. local mag = diff.magnitude
  1099. local heading = CFrame.new(root.Position, pos).lookVector
  1100. local function movetocustlocation()
  1101. if debounce then return end
  1102. debounce = true
  1103. for a = 0, mag, increment do
  1104. if cancelmove then
  1105. print("Stopped moving to location")
  1106. break
  1107. end
  1108. root.Anchored = false
  1109. root.CFrame = root.CFrame + (heading * increment)
  1110. wait( (time/mag) * increment )
  1111. end
  1112. debounce = false
  1113. root.Anchored = true
  1114. end
  1115. movetocustlocation()
  1116. end
  1117. wait()
  1118. root.Anchored = false
  1119. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1120. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1121. TPLocation.Text = "Move to"
  1122. end)
  1123.  
  1124. TPIsland1.MouseButton1Click:connect(function()
  1125. cancelmove = false
  1126. wait()
  1127. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1128. TPIsland1.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1129. TPIsland1.Text = "Moving to Island 1"
  1130. local plr = game.Players.LocalPlayer
  1131. local char = plr.Character
  1132. local root = char.HumanoidRootPart
  1133. wait()
  1134. local pos = Vector3.new(220, -4, -900)
  1135. local time = 0.1
  1136. local increment = 2
  1137. local debounce = false
  1138. local diff = pos-root.Position
  1139. local mag = diff.magnitude
  1140. local heading = CFrame.new(root.Position, pos).lookVector
  1141. local function movetolocation()
  1142. if debounce then return end
  1143. debounce = true
  1144. for a = 0, mag, increment do
  1145. if cancelmove then
  1146. print("Stopped moving to location")
  1147. break
  1148. end
  1149. root.Anchored = false
  1150. root.CFrame = root.CFrame + (heading * increment)
  1151. wait( (time/mag) * increment )
  1152. end
  1153. debounce = false
  1154. root.Anchored = true
  1155. end
  1156. wait()
  1157. movetolocation()
  1158. root.Anchored = false
  1159.  
  1160. for i = 1,240 do
  1161. if cancelmove then
  1162. break
  1163. end
  1164. wait()
  1165. root.Anchored = true
  1166. root.CFrame = CFrame.new(root.CFrame.x, root.CFrame.y +1 , root.CFrame.z)
  1167. end
  1168. root.Anchored = false
  1169. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1170. TPIsland1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1171. TPIsland1.Text = "Waterfall Island"
  1172. end)
  1173.  
  1174. TPIsland2.MouseButton1Click:connect(function()
  1175. cancelmove = false
  1176. wait()
  1177. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1178. TPIsland2.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1179. TPIsland2.Text = "Moving to Island 2"
  1180. local plr = game.Players.LocalPlayer
  1181. local char = plr.Character
  1182. local root = char.HumanoidRootPart
  1183. wait()
  1184. local pos = Vector3.new(-480, -4, -1240)
  1185. local time = 0.1
  1186. local increment = 2
  1187. local debounce = false
  1188. local diff = pos-root.Position
  1189. local mag = diff.magnitude
  1190. local heading = CFrame.new(root.Position, pos).lookVector
  1191. local function movetolocation()
  1192. if debounce then return end
  1193. debounce = true
  1194. for a = 0, mag, increment do
  1195. if cancelmove then
  1196. print("Stopped moving to location")
  1197. break
  1198. end
  1199. root.Anchored = false
  1200. root.CFrame = root.CFrame + (heading * increment)
  1201. wait( (time/mag) * increment )
  1202. end
  1203. debounce = false
  1204. root.Anchored = true
  1205. end
  1206. wait()
  1207. movetolocation()
  1208. root.Anchored = false
  1209.  
  1210. for i = 1,350 do
  1211. if cancelmove then
  1212. break
  1213. end
  1214. wait()
  1215. root.Anchored = true
  1216. root.CFrame = CFrame.new(root.CFrame.x, root.CFrame.y +1 , root.CFrame.z)
  1217. end
  1218. root.Anchored = false
  1219. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1220. TPIsland2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1221. TPIsland2.Text = "Ancient Tree Island"
  1222. end)
  1223.  
  1224. TPIsland3.MouseButton1Click:connect(function()
  1225. cancelmove = false
  1226. wait()
  1227. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1228. TPIsland3.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1229. TPIsland3.Text = "Moving to Island 3"
  1230. local plr = game.Players.LocalPlayer
  1231. local char = plr.Character
  1232. local root = char.HumanoidRootPart
  1233. wait()
  1234. local pos = Vector3.new(-1104, -4, -1212)
  1235. local time = 0.1
  1236. local increment = 2
  1237. local debounce = false
  1238. local diff = pos-root.Position
  1239. local mag = diff.magnitude
  1240. local heading = CFrame.new(root.Position, pos).lookVector
  1241. local function movetolocation()
  1242. if debounce then return end
  1243. debounce = true
  1244. for a = 0, mag, increment do
  1245. if cancelmove then
  1246. print("Stopped moving to location")
  1247. break
  1248. end
  1249. root.Anchored = false
  1250. root.CFrame = root.CFrame + (heading * increment)
  1251. wait( (time/mag) * increment )
  1252. end
  1253. debounce = false
  1254. root.Anchored = true
  1255. end
  1256. wait()
  1257. movetolocation()
  1258. root.Anchored = false
  1259.  
  1260. for i = 1,350 do
  1261. if cancelmove then
  1262. break
  1263. end
  1264. wait()
  1265. root.Anchored = true
  1266. root.CFrame = CFrame.new(root.CFrame.x, root.CFrame.y +1 , root.CFrame.z)
  1267. end
  1268. root.Anchored = false
  1269. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1270. TPIsland3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1271. TPIsland3.Text = "Lonely God/Crystal Island"
  1272. end)
  1273.  
  1274. TeleportMagnetite.MouseButton1Click:connect(function()
  1275. cancelmove = false
  1276. wait()
  1277. plr = game.Players.LocalPlayer
  1278. char = plr.Character
  1279. root = char.HumanoidRootPart
  1280. wait()
  1281. local Pos = game.Workspace["Meteor Core"].Part.Position
  1282. if Pos == nil then print("Meteor has not crash landed yet") return end
  1283. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1284. TeleportMagnetite.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1285. TeleportMagnetite.Text = "Moving to Meteor"
  1286. local Time = 0.1
  1287. local increment = 2
  1288. local debounce = false
  1289.  
  1290. local diff = Pos - root.Position
  1291. local mag = diff.magnitude
  1292. local heading = CFrame.new(root.Position, Pos).lookVector
  1293.  
  1294. function MoveToMagnetite()
  1295. if debounce then return end
  1296. debounce = true
  1297. for n = 0, mag, increment do
  1298. if cancelmove then
  1299. print("Stopped moving to location")
  1300. break
  1301. end
  1302. root.Anchored = false
  1303. root.CFrame = root.CFrame + (heading * increment)
  1304. wait( (Time/mag) * increment )
  1305. end
  1306. debounce = false
  1307. root.Anchored = false
  1308. end
  1309. wait()
  1310.  
  1311. MoveToMagnetite()
  1312. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1313. TeleportMagnetite.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1314. TeleportMagnetite.Text = "Go to Meteor if spawned"
  1315. end)
  1316.  
  1317. AduriteCave.MouseButton1Click:connect(function()
  1318. cancelmove = false
  1319. wait()
  1320. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1321. AduriteCave.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1322. AduriteCave.Text = "Moving to Adurite Cave"
  1323. local plr = game.Players.LocalPlayer
  1324. local char = plr.Character
  1325. local root = char.HumanoidRootPart
  1326. wait()
  1327. local pos = Vector3.new(1327, -4, 1338)
  1328. local time = 0.1
  1329. local increment = 2
  1330. local debounce = false
  1331. local diff = pos-root.Position
  1332. local mag = diff.magnitude
  1333. local heading = CFrame.new(root.Position, pos).lookVector
  1334. local function movetolocation()
  1335. if debounce then return end
  1336. debounce = true
  1337. for a = 0, mag, increment do
  1338. if cancelmove then
  1339. print("Stopped moving to location")
  1340. break
  1341. end
  1342. root.Anchored = false
  1343. root.CFrame = root.CFrame + (heading * increment)
  1344. wait( (time/mag) * increment )
  1345. end
  1346. debounce = false
  1347. root.Anchored = true
  1348. end
  1349. wait()
  1350. movetolocation()
  1351. root.Anchored = false
  1352. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1353. AduriteCave.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1354. AduriteCave.Text = "Move to Adurite Cave"
  1355. end)
  1356.  
  1357. AncientCave.MouseButton1Click:connect(function()
  1358. cancelmove = false
  1359. wait()
  1360. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1361. AncientCave.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1362. AncientCave.Text = "Moving to Ancient Cave"
  1363. local plr = game.Players.LocalPlayer
  1364. local char = plr.Character
  1365. local root = char.HumanoidRootPart
  1366. wait()
  1367. local pos = Vector3.new(-1122, -4, -1033)
  1368. local time = 0.1
  1369. local increment = 2
  1370. local debounce = false
  1371. local diff = pos-root.Position
  1372. local mag = diff.magnitude
  1373. local heading = CFrame.new(root.Position, pos).lookVector
  1374. local function movetolocation()
  1375. if debounce then return end
  1376. debounce = true
  1377. for a = 0, mag, increment do
  1378. if cancelmove then
  1379. print("Stopped moving to location")
  1380. break
  1381. end
  1382. root.Anchored = false
  1383. root.CFrame = root.CFrame + (heading * increment)
  1384. wait( (time/mag) * increment )
  1385. end
  1386. debounce = false
  1387. root.Anchored = true
  1388. end
  1389. wait()
  1390. movetolocation()
  1391. root.Anchored = false
  1392. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1393. AncientCave.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1394. AncientCave.Text = "Move to Ancient Cave"
  1395. end)
  1396.  
  1397. MainIsland.MouseButton1Click:connect(function()
  1398. cancelmove = false
  1399. wait()
  1400. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1401. MainIsland.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1402. MainIsland.Text = "Moving to Main Island"
  1403. local plr = game.Players.LocalPlayer
  1404. local char = plr.Character
  1405. local root = char.HumanoidRootPart
  1406. wait()
  1407. local pos = Vector3.new(-89, -4, -40)
  1408. local time = 0.1
  1409. local increment = 2
  1410. local debounce = false
  1411. local diff = pos-root.Position
  1412. local mag = diff.magnitude
  1413. local heading = CFrame.new(root.Position, pos).lookVector
  1414. local function movetolocation()
  1415. if debounce then return end
  1416. debounce = true
  1417. for a = 0, mag, increment do
  1418. if cancelmove then
  1419. print("Stopped moving to location")
  1420. break
  1421. end
  1422. root.Anchored = false
  1423. root.CFrame = root.CFrame + (heading * increment)
  1424. wait( (time/mag) * increment )
  1425. end
  1426. debounce = false
  1427. root.Anchored = true
  1428. end
  1429. wait()
  1430. movetolocation()
  1431. root.Anchored = false
  1432. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1433. MainIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1434. MainIsland.Text = "Move to Main Island"
  1435. end)
  1436.  
  1437. IceIsland.MouseButton1Click:connect(function()
  1438. cancelmove = false
  1439. wait()
  1440. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1441. IceIsland.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1442. IceIsland.Text = "Moving to Ice Island"
  1443. local plr = game.Players.LocalPlayer
  1444. local char = plr.Character
  1445. local root = char.HumanoidRootPart
  1446. wait()
  1447. local pos = Vector3.new(90, -4, -1076)
  1448. local time = 0.1
  1449. local increment = 2
  1450. local debounce = false
  1451. local diff = pos-root.Position
  1452. local mag = diff.magnitude
  1453. local heading = CFrame.new(root.Position, pos).lookVector
  1454. local function movetolocation()
  1455. if debounce then return end
  1456. debounce = true
  1457. for a = 0, mag, increment do
  1458. if cancelmove then
  1459. print("Stopped moving to location")
  1460. break
  1461. end
  1462. root.Anchored = false
  1463. root.CFrame = root.CFrame + (heading * increment)
  1464. wait( (time/mag) * increment )
  1465. end
  1466. debounce = false
  1467. root.Anchored = true
  1468. end
  1469. wait()
  1470. movetolocation()
  1471. root.Anchored = false
  1472. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1473. IceIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1474. IceIsland.Text = "Move to Ice Island"
  1475. end)
  1476.  
  1477. StarterIsland.MouseButton1Click:connect(function()
  1478. cancelmove = false
  1479. wait()
  1480. WayPoints.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1481. StarterIsland.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1482. StarterIsland.Text = "Moving to Starter Island"
  1483. local plr = game.Players.LocalPlayer
  1484. local char = plr.Character
  1485. local root = char.HumanoidRootPart
  1486. wait()
  1487. local pos = Vector3.new(-1686, -4, -2534)
  1488. local time = 0.1
  1489. local increment = 2
  1490. local debounce = false
  1491. local diff = pos-root.Position
  1492. local mag = diff.magnitude
  1493. local heading = CFrame.new(root.Position, pos).lookVector
  1494. local function movetolocation()
  1495. if debounce then return end
  1496. debounce = true
  1497. for a = 0, mag, increment do
  1498. if cancelmove then
  1499. print("Stopped moving to location")
  1500. break
  1501. end
  1502. print("Moving to Starter Island")
  1503. print(cancelmove)
  1504. root.Anchored = false
  1505. root.CFrame = root.CFrame + (heading * increment)
  1506. wait( (time/mag) * increment )
  1507. end
  1508. debounce = false
  1509. root.Anchored = true
  1510. end
  1511. wait()
  1512. movetolocation()
  1513. root.Anchored = false
  1514. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1515. StarterIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1516. StarterIsland.Text = "Move to Starter Island"
  1517. end)
  1518.  
  1519. CancelMoveTo.MouseButton1Click:connect(function()
  1520. cancelmove = true
  1521. heading = false
  1522. debounce = false
  1523. root.Anchored = false
  1524. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1525. TPLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1526. TPLocation.Text = "Move to"
  1527. TPIsland1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1528. TPIsland1.Text = "Waterfall Island"
  1529. TPIsland2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1530. TPIsland2.Text = "Ancient Tree Island"
  1531. TPIsland3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1532. TPIsland3.Text = "Lonely God/Crystal Island"
  1533. TeleportMagnetite.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1534. TeleportMagnetite.Text = "Go to Meteor if spawned"
  1535. AduriteCave.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1536. AduriteCave.Text = "Move to Adurite Cave"
  1537. AncientCave.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1538. AncientCave.Text = "Move to Ancient Cave"
  1539. IceIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1540. IceIsland.Text = "Move to Ice Island"
  1541. MainIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1542. MainIsland.Text = "Move to Main Island"
  1543. StarterIsland.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1544. StarterIsland.Text = "Move to Starter Island"
  1545. end)
  1546.  
  1547. -- God Mode --
  1548.  
  1549. God.MouseButton1Click:connect(function()
  1550. if godmodeactive ~= true then
  1551. godmodeactive = true
  1552. God.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1553.  
  1554. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  1555. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  1556. l.Parent = game.Players.LocalPlayer.Character
  1557. l.Name = "Humanoid"
  1558. wait(0.1)
  1559. game.Players.LocalPlayer.Character["1"]:Destroy()
  1560. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  1561. game.Players.LocalPlayer.Character.Animate.Disabled = true
  1562. wait(0.1)
  1563. game.Players.LocalPlayer.Character.Animate.Disabled = false
  1564. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  1565. end
  1566. end)
  1567.  
  1568. -- Grab Items --
  1569.  
  1570. AduriteOn = false
  1571. ArmorOn = false
  1572. BarleyOn = false
  1573. CoalOn = false
  1574. CoinOn = false
  1575. CrystalOn = false
  1576. EggOn = false
  1577. EssenceOn = false
  1578. FruitOn = false
  1579. GoldOn = false
  1580. HideOn = false
  1581. IceOn = false
  1582. IronOn = false
  1583. KeyOn = false
  1584. LeavesOn = false
  1585. LogOn = false
  1586. MagnetiteOn = false
  1587. MeatOn = false
  1588. RawOn = false
  1589. SteelOn = false
  1590. StickOn = false
  1591. StoneOn = false
  1592. TPItemsOn = false
  1593.  
  1594. TPItem1.MouseButton1Click:connect(function()
  1595. if AduriteOn ~= true then
  1596. AduriteOn = true
  1597. TPItem1.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1598. else
  1599. AduriteOn = false
  1600. TPItem1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1601. end
  1602. end)
  1603.  
  1604. TPItem2.MouseButton1Click:connect(function()
  1605. if ArmorOn ~= true then
  1606. ArmorOn = true
  1607. TPItem2.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1608. else
  1609. ArmorOn = false
  1610. TPItem2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1611. end
  1612. end)
  1613.  
  1614. TPItem3.MouseButton1Click:connect(function()
  1615. if BarleyOn ~= true then
  1616. BarleyOn = true
  1617. TPItem3.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1618. else
  1619. BarleyOn = false
  1620. TPItem3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1621. end
  1622. end)
  1623.  
  1624. TPItem4.MouseButton1Click:connect(function()
  1625. if CoalOn ~= true then
  1626. CoalOn = true
  1627. TPItem4.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1628. else
  1629. CoalOn = false
  1630. TPItem4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1631. end
  1632. end)
  1633.  
  1634. TPItem5.MouseButton1Click:connect(function()
  1635. if CoinOn ~= true then
  1636. CoinOn = true
  1637. TPItem5.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1638. else
  1639. CoinOn = false
  1640. TPItem5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1641. end
  1642. end)
  1643.  
  1644. TPItem6.MouseButton1Click:connect(function()
  1645. if CrystalOn ~= true then
  1646. CrystalOn = true
  1647. TPItem6.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1648. else
  1649. CrystalOn = false
  1650. TPItem6.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1651. end
  1652. end)
  1653.  
  1654. TPItem7.MouseButton1Click:connect(function()
  1655. if EggOn ~= true then
  1656. EggOn = true
  1657. TPItem7.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1658. else
  1659. EggOn = false
  1660. TPItem7.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1661. end
  1662. end)
  1663.  
  1664. TPItem8.MouseButton1Click:connect(function()
  1665. if EssenceOn ~= true then
  1666. EssenceOn = true
  1667. TPItem8.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1668. else
  1669. EssenceOn = false
  1670. TPItem8.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1671. end
  1672. end)
  1673.  
  1674. TPItem9.MouseButton1Click:connect(function()
  1675. if FruitOn ~= true then
  1676. FruitOn = true
  1677. TPItem9.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1678. else
  1679. FruitOn = false
  1680. TPItem9.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1681. end
  1682. end)
  1683.  
  1684. TPItem9a.MouseButton1Click:connect(function()
  1685. if GoldOn ~= true then
  1686. GoldOn = true
  1687. TPItem9a.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1688. else
  1689. GoldOn = false
  1690. TPItem9a.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1691. end
  1692. end)
  1693.  
  1694. TPItem10.MouseButton1Click:connect(function()
  1695. if HideOn ~= true then
  1696. HideOn = true
  1697. TPItem10.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1698. else
  1699. HideOn = false
  1700. TPItem10.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1701. end
  1702. end)
  1703.  
  1704. TPItem11.MouseButton1Click:connect(function()
  1705. if IceOn ~= true then
  1706. IceOn = true
  1707. TPItem11.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1708. else
  1709. IceOn = false
  1710. TPItem11.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1711. end
  1712. end)
  1713. TPItem12.MouseButton1Click:connect(function()
  1714. if IronOn ~= true then
  1715. IronOn = true
  1716. TPItem12.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1717. else
  1718. IronOn = false
  1719. TPItem12.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1720. end
  1721. end)
  1722. TPItem12c.MouseButton1Click:connect(function()
  1723. if KeyOn ~= true then
  1724. KeyOn = true
  1725. TPItem12c.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1726. else
  1727. KeyOn = false
  1728. TPItem12c.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1729. end
  1730. end)
  1731. TPItem13.MouseButton1Click:connect(function()
  1732. if LeavesOn ~= true then
  1733. LeavesOn = true
  1734. TPItem13.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1735. else
  1736. LeavesOn = false
  1737. TPItem13.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1738. end
  1739. end)
  1740.  
  1741. TPItem14.MouseButton1Click:connect(function()
  1742. if LogOn ~= true then
  1743. LogOn = true
  1744. TPItem14.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1745. else
  1746. LogOn = false
  1747. TPItem14.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1748. end
  1749. end)
  1750.  
  1751. TPItem15.MouseButton1Click:connect(function()
  1752. if MagnetiteOn ~= true then
  1753. MagnetiteOn = true
  1754. TPItem15.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1755. else
  1756. MagnetiteOn = false
  1757. TPItem15.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1758. end
  1759. end)
  1760.  
  1761. TPItem16.MouseButton1Click:connect(function()
  1762. if MeatOn ~= true then
  1763. MeatOn = true
  1764. TPItem16.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1765. else
  1766. MeatOn = false
  1767. TPItem16.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1768. end
  1769. end)
  1770.  
  1771. TPItem17.MouseButton1Click:connect(function()
  1772. if RawOn ~= true then
  1773. RawOn = true
  1774. TPItem17.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1775. else
  1776. RawOn = false
  1777. TPItem17.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1778. end
  1779. end)
  1780.  
  1781. TPItem18.MouseButton1Click:connect(function()
  1782. if SteelOn ~= true then
  1783. SteelOn = true
  1784. TPItem18.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1785. else
  1786. SteelOn = false
  1787. TPItem18.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1788. end
  1789. end)
  1790.  
  1791. TPItem19.MouseButton1Click:connect(function()
  1792. if StickOn ~= true then
  1793. StickOn = true
  1794. TPItem19.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1795. else
  1796. StickOn = false
  1797. TPItem19.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1798. end
  1799. end)
  1800.  
  1801. TPItem20.MouseButton1Click:connect(function()
  1802. if StoneOn ~= true then
  1803. StoneOn = true
  1804. TPItem20.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1805. else
  1806. StoneOn = false
  1807. TPItem20.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1808. end
  1809. end)
  1810.  
  1811. local grab = function(thing)
  1812. local RepStore = game:service'ReplicatedStorage'
  1813. local ev = RepStore.Events.ForceInteract;
  1814. local ev2 = RepStore.Events.Pickup;
  1815. local plr = game:service'Players'.LocalPlayer
  1816.  
  1817. if not thing:FindFirstChild('Draggable') then return end;
  1818. repeat
  1819. ev:FireServer(thing)
  1820. thing.CFrame = plr.Character.HumanoidRootPart.CFrame * CFrame.new(4,0,1)
  1821. wait()
  1822. ev2:FireServer(thing)
  1823. until not thing or not thing.Parent
  1824. ev:FireServer()
  1825. end
  1826.  
  1827. if _G.event then _G.event:disconnect() end
  1828.  
  1829. TPItemsStart.MouseButton1Click:connect(function()
  1830. if not TPItemsOn then
  1831. TPItemsOn = true
  1832. TPItemsStart.Text = "STOP"
  1833. TPItems.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1834. _G.event = workspace.DescendantAdded:connect(function(o)
  1835. if TPItemsOn then
  1836. if AduriteOn then
  1837. if o.Name:find('Adurite') then
  1838. wait()
  1839. grab(o)
  1840. print("Grabbed "..o.Name)
  1841. end
  1842. end
  1843. if ArmorOn then
  1844. if o.Name:Find('Armor') then
  1845. wait()
  1846. grab(o)
  1847. print("Grabbed "..o.Name)
  1848. end
  1849. end
  1850. if BarleyOn then
  1851. if o.Name:find('Barley') then
  1852. wait()
  1853. grab(o)
  1854. print("Grabbed "..o.Name)
  1855. end
  1856. end
  1857. if CoalOn then
  1858. if o.Name:find('Coal') then
  1859. wait()
  1860. grab(o)
  1861. print("Grabbed "..o.Name)
  1862. end
  1863. end
  1864. if CoinOn then
  1865. if o.Name:find('Coin') then
  1866. wait()
  1867. grab(o)
  1868. print("Grabbed "..o.Name)
  1869. end
  1870. end
  1871. if CrystalOn then
  1872. if o.Name:find('Crystal') then
  1873. wait()
  1874. grab(o)
  1875. print("Grabbed "..o.Name)
  1876. end
  1877. end
  1878. if EggOn then
  1879. if o.Name:find('Egg') then
  1880. wait()
  1881. grab(o)
  1882. print("Grabbed "..o.Name)
  1883. end
  1884. end
  1885. if EssenceOn then
  1886. if o.Name:find('Essence') then
  1887. wait()
  1888. grab(o)
  1889. print("Grabbed "..o.Name)
  1890. end
  1891. end
  1892. if FruitOn then
  1893. if o.Name:find('fruit') then
  1894. wait()
  1895. grab(o)
  1896. print("Grabbed "..o.Name)
  1897. end
  1898. end
  1899. if GoldOn then
  1900. if o.Name:find('Gold') then
  1901. wait()
  1902. grab(o)
  1903. print("Grabbed "..o.Name)
  1904. end
  1905. end
  1906. if HideOn then
  1907. if o.Name:find('Hide') then
  1908. wait()
  1909. grab(o)
  1910. print("Grabbed "..o.Name)
  1911. end
  1912. end
  1913. if IceOn then
  1914. if o.Name:find('Ice') then
  1915. wait()
  1916. grab(o)
  1917. print("Grabbed "..o.Name)
  1918. end
  1919. end
  1920. if IronOn then
  1921. if o.Name:find('Iron') then
  1922. wait()
  1923. grab(o)
  1924. print("Grabbed "..o.Name)
  1925. end
  1926. end
  1927. if KeyOn then
  1928. if o.Name:find('Key') then
  1929. wait()
  1930. grab(o)
  1931. print("Grabbed "..o.Name)
  1932. end
  1933. end
  1934. if LeavesOn then
  1935. if o.Name:find('Leaves') then
  1936. wait()
  1937. grab(o)
  1938. print("Grabbed "..o.Name)
  1939. end
  1940. end
  1941. if LogOn then
  1942. if o.Name:find('Log') then
  1943. wait()
  1944. grab(o)
  1945. print("Grabbed "..o.Name)
  1946. end
  1947. end
  1948. if MagnetiteOn then
  1949. if o.Name:find('Magnetite') then
  1950. wait()
  1951. grab(o)
  1952. print("Grabbed "..o.Name)
  1953. end
  1954. end
  1955. if MeatOn then
  1956. if o.Name:find('Meat') then
  1957. wait()
  1958. grab(o)
  1959. print("Grabbed "..o.Name)
  1960. end
  1961. end
  1962. if RawOn then
  1963. if o.Name:find('Raw') then
  1964. wait()
  1965. grab(o)
  1966. print("Grabbed "..o.Name)
  1967. end
  1968. end
  1969. if SteelOn then
  1970. if o.Name:find('Steel') then
  1971. wait()
  1972. grab(o)
  1973. print("Grabbed "..o.Name)
  1974. end
  1975. end
  1976. if StickOn then
  1977. if o.Name:find('Stick') then
  1978. wait()
  1979. grab(o)
  1980. print("Grabbed "..o.Name)
  1981. end
  1982. end
  1983. if StoneOn then
  1984. if o.Name:find('Stone') then
  1985. wait()
  1986. grab(o)
  1987. print("Grabbed "..o.Name)
  1988. end
  1989. end
  1990. end
  1991. end)
  1992. else
  1993. TPItemsOn = false
  1994. TPItemsStart.Text = "START"
  1995. TPItems.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1996. _G.event:disconnect()
  1997. end
  1998. end)
  1999.  
  2000. mouse = game.Players.LocalPlayer:GetMouse()
  2001. mouse.KeyDown:connect(function(key)
  2002. if key == "q" then
  2003. local plr = game.Players.LocalPlayer
  2004. local char = plr.Character
  2005. local root = char.HumanoidRootPart
  2006. for i = 1,200 do
  2007. wait()
  2008. root.Anchored = true
  2009. root.CFrame = CFrame.new(root.CFrame.x, root.CFrame.y +2 , root.CFrame.z)
  2010. end
  2011. root.Anchored = false
  2012. end
  2013. end)
  2014.  
  2015. PanicButton.MouseButton1Click:connect(function()
  2016. local plr = game.Players.LocalPlayer
  2017. local char = plr.Character
  2018. local root = char.HumanoidRootPart
  2019. for i = 1,100 do
  2020. wait()
  2021. root.Anchored = true
  2022. root.CFrame = CFrame.new(root.CFrame.x, root.CFrame.y +2 , root.CFrame.z)
  2023. end
  2024. root.Anchored = false
  2025. end)
  2026.  
  2027. -- ESP --
  2028.  
  2029. esptrack.MouseButton1Click:connect(function()
  2030. ESPEnabled = not ESPEnabled
  2031. if ESPEnabled then
  2032. esptrack.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2033. for _, v in next, Plrs:GetPlayers() do
  2034. if v ~= MyPlr then
  2035. if CharAddedEvent[v.Name] == nil then
  2036. CharAddedEvent[v.Name] = v.CharacterAdded:connect(function(Char)
  2037. if ESPEnabled then
  2038. RemoveESP(v)
  2039. CreateESP(v)
  2040. end
  2041. repeat wait() until Char:FindFirstChild("HumanoidRootPart")
  2042. end)
  2043. end
  2044. RemoveESP(v)
  2045. CreateESP(v)
  2046. end
  2047. end
  2048. else
  2049. esptrack.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2050. for _, v in next, Plrs:GetPlayers() do
  2051. RemoveESP(v)
  2052. end
  2053. end
  2054. end)
  2055.  
  2056. mouse.KeyDown:connect(function(key)
  2057. local plr = game:GetService("Players").LocalPlayer
  2058. local char = plr.Character
  2059. local root = char.HumanoidRootPart
  2060. if key == "g" then
  2061. walkfastactive = true
  2062. while walkfastactive do
  2063. root.CFrame = root.CFrame + root.CFrame.lookVector * walkmult
  2064. wait()
  2065. end
  2066. end
  2067. end)
  2068. mouse.KeyUp:connect(function(key)
  2069. if key == "g" then
  2070. walkfastactive = false
  2071. end
  2072. end)
  2073.  
  2074. --- ReJoin Server ---
  2075.  
  2076. ReJoinServer.MouseButton1Click:connect(function()
  2077. local placeId = 1262182609
  2078. game:GetService("TeleportService"):Teleport(placeId)
  2079. end)
Add Comment
Please, Sign In to add comment