Adel987654321

booga booga Gui 3

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