Stevano

BOOGA

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