Guest User

sierras a rat

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