Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local GUI = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local AFOn = Instance.new("TextButton")
- local ASOn = Instance.new("TextButton")
- local AFOff = Instance.new("TextButton")
- local ASOff = Instance.new("TextButton")
- local CLose = Instance.new("TextButton")
- local By = Instance.new("TextLabel")
- local TP = Instance.new("Frame")
- local Zone = Instance.new("TextButton")
- local CLose_2 = Instance.new("TextButton")
- local Zone_2 = Instance.new("TextButton")
- local Zone_3 = Instance.new("TextButton")
- local Zone_4 = Instance.new("TextButton")
- local Zone_5 = Instance.new("TextButton")
- local Zone_6 = Instance.new("TextButton")
- local Zone_7 = Instance.new("TextButton")
- local Zone_8 = Instance.new("TextButton")
- local Zone_9 = Instance.new("TextButton")
- local Zone_10 = Instance.new("TextButton")
- local Zone_11 = Instance.new("TextButton")
- local AllIslands = Instance.new("TextButton")
- --Properties:
- GUI.Name = "GUI"
- GUI.Parent = game.CoreGui
- GUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Main.Name = "Main"
- Main.Parent = GUI
- Main.Active = true
- Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0.216253445, 0, 0.322695047, 0)
- Main.Size = UDim2.new(0, 412, 0, 200)
- Main.Active = true
- Main.Draggable = true
- AFOn.Name = "AF On"
- AFOn.Parent = Main
- AFOn.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- AFOn.BorderColor3 = Color3.fromRGB(25, 25, 25)
- AFOn.BorderSizePixel = 0
- AFOn.Position = UDim2.new(3.7252903e-09, 0, 0.170000002, 0)
- AFOn.Size = UDim2.new(0, 154, 0, 46)
- AFOn.Font = Enum.Font.SourceSans
- AFOn.Text = "Auto Farm [On]"
- AFOn.TextColor3 = Color3.fromRGB(255, 255, 255)
- AFOn.TextSize = 14.000
- AFOn.MouseButton1Down:connect (function()
- --AutoFarm
- _G.HEAT = true --change to true or false
- while _G.HEAT do
- wait() --change time if you want
- game:GetService("ReplicatedStorage").RemoteFunctions.HeatIncreaseFunc:InvokeServer()
- end
- end)
- ASOn.Name = "AS On"
- ASOn.Parent = Main
- ASOn.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- ASOn.BorderColor3 = Color3.fromRGB(25, 25, 25)
- ASOn.BorderSizePixel = 0
- ASOn.Position = UDim2.new(0.62621361, 0, 0.170000002, 0)
- ASOn.Size = UDim2.new(0, 154, 0, 46)
- ASOn.Font = Enum.Font.SourceSans
- ASOn.Text = "Auto Sell [On]"
- ASOn.TextColor3 = Color3.fromRGB(255, 255, 255)
- ASOn.TextSize = 14.000
- ASOn.MouseButton1Down:connect (function()
- --AutoSell
- _G.SELL = true --change to true or false
- while _G.SELL do
- wait() --change time if you want
- game:GetService("ReplicatedStorage").RemoteFunctions.SellHeatFunc:InvokeServer()
- end
- end)
- AFOff.Name = "AF Off"
- AFOff.Parent = Main
- AFOff.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- AFOff.BorderColor3 = Color3.fromRGB(25, 25, 25)
- AFOff.BorderSizePixel = 0
- AFOff.Position = UDim2.new(3.7252903e-09, 0, 0.540000021, 0)
- AFOff.Size = UDim2.new(0, 154, 0, 46)
- AFOff.Font = Enum.Font.SourceSans
- AFOff.Text = "Auto Farm [Off]"
- AFOff.TextColor3 = Color3.fromRGB(255, 255, 255)
- AFOff.TextSize = 14.000
- AFOff.MouseButton1Down:connect (function()
- --AutoFarm
- _G.HEAT = false --change to true or false
- while _G.HEAT do
- wait() --change time if you want
- game:GetService("ReplicatedStorage").RemoteFunctions.HeatIncreaseFunc:InvokeServer()
- end
- end)
- ASOff.Name = "AS Off"
- ASOff.Parent = Main
- ASOff.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- ASOff.BorderColor3 = Color3.fromRGB(25, 25, 25)
- ASOff.BorderSizePixel = 0
- ASOff.Position = UDim2.new(0.62621361, 0, 0.540000021, 0)
- ASOff.Size = UDim2.new(0, 154, 0, 46)
- ASOff.Font = Enum.Font.SourceSans
- ASOff.Text = "Auto Sell [Off]"
- ASOff.TextColor3 = Color3.fromRGB(255, 255, 255)
- ASOff.TextSize = 14.000
- ASOff.MouseButton1Down:connect(function()
- --AutoSell
- _G.SELL = false --change to true or false
- while _G.SELL do
- wait() --change time if you want
- game:GetService("ReplicatedStorage").RemoteFunctions.SellHeatFunc:InvokeServer()
- end
- end)
- CLose.Name = "CLose"
- CLose.Parent = Main
- CLose.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- CLose.BorderColor3 = Color3.fromRGB(25, 25, 25)
- CLose.BorderSizePixel = 0
- CLose.Position = UDim2.new(0.941747546, 0, 0, 0)
- CLose.Size = UDim2.new(0, 24, 0, 24)
- CLose.Font = Enum.Font.SourceSans
- CLose.Text = "X"
- CLose.TextColor3 = Color3.fromRGB(170, 0, 0)
- CLose.TextSize = 18.000
- CLose.MouseButton1Down:connect(function()
- GUI.Visible = false
- end)
- By.Name = "By"
- By.Parent = Main
- By.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- By.BorderSizePixel = 0
- By.Position = UDim2.new(0.271336526, 0, 0.860744655, 0)
- By.Size = UDim2.new(0, 187, 0, 27)
- By.Font = Enum.Font.SourceSans
- By.Text = "GUI by DepsYT#0274"
- By.TextColor3 = Color3.fromRGB(255, 255, 255)
- By.TextSize = 19.000
- TP.Name = "TP"
- TP.Parent = Main
- TP.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- TP.BorderColor3 = Color3.fromRGB(25, 25, 25)
- TP.BorderSizePixel = 2
- TP.Position = UDim2.new(-0.269417465, 0, 0, 0)
- TP.Size = UDim2.new(0, 100, 0, 200)
- TP.Active = true
- TP.Draggable = true
- Zone.Name = "Zone"
- Zone.Parent = TP
- Zone.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone.BorderSizePixel = 0
- Zone.Position = UDim2.new(0.11242722, 0, 0.144999981, 0)
- Zone.Size = UDim2.new(0, 81, 0, 17)
- Zone.Font = Enum.Font.SourceSans
- Zone.Text = "Fortune island"
- Zone.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone.TextSize = 14.000
- Zone.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222, 1064, 594)
- end
- end)
- CLose_2.Name = "CLose"
- CLose_2.Parent = TP
- CLose_2.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- CLose_2.BorderColor3 = Color3.fromRGB(25, 25, 25)
- CLose_2.BorderSizePixel = 0
- CLose_2.Position = UDim2.new(0.751747549, 0, 0, 0)
- CLose_2.Size = UDim2.new(0, 24, 0, 24)
- CLose_2.Font = Enum.Font.SourceSans
- CLose_2.Text = "X"
- CLose_2.TextColor3 = Color3.fromRGB(170, 0, 0)
- CLose_2.TextSize = 18.000
- CLose_2.MouseButton1Down:connect(function()
- TP.Visible = false
- end)
- Zone_2.Name = "Zone"
- Zone_2.Parent = TP
- Zone_2.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_2.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_2.BorderSizePixel = 0
- Zone_2.Position = UDim2.new(0.11242722, 0, 0.229999989, 0)
- Zone_2.Size = UDim2.new(0, 81, 0, 17)
- Zone_2.Font = Enum.Font.SourceSans
- Zone_2.Text = "Lava lake island"
- Zone_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_2.TextSize = 14.000
- Zone_2.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-218, 1887, 567)
- end
- end)
- Zone_3.Name = "Zone"
- Zone_3.Parent = TP
- Zone_3.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_3.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_3.BorderSizePixel = 0
- Zone_3.Position = UDim2.new(0.11242722, 0, 0.484999985, 0)
- Zone_3.Size = UDim2.new(0, 81, 0, 17)
- Zone_3.Font = Enum.Font.SourceSans
- Zone_3.Text = "Interstellar island"
- Zone_3.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_3.TextSize = 13.000
- Zone_3.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-301, 15715, 400)
- end
- end)
- Zone_5.Name = "Zone"
- Zone_5.Parent = TP
- Zone_5.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_5.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_5.BorderSizePixel = 0
- Zone_5.Position = UDim2.new(0.11242722, 0, 0.314999998, 0)
- Zone_5.Size = UDim2.new(0, 81, 0, 17)
- Zone_5.Font = Enum.Font.SourceSans
- Zone_5.Text = "Magma pools island"
- Zone_5.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_5.TextSize = 10.000
- Zone_5.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-184, 4318, 452)
- end
- end)
- Zone_6.Name = "Zone"
- Zone_6.Parent = TP
- Zone_6.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_6.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_6.BorderSizePixel = 0
- Zone_6.Position = UDim2.new(0.11242722, 0, 0.910000026, 0)
- Zone_6.Size = UDim2.new(0, 81, 0, 17)
- Zone_6.Font = Enum.Font.SourceSans
- Zone_6.Text = "Spacebound island"
- Zone_6.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_6.TextSize = 12.000
- Zone_6.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-379, 62940, -114)
- end
- end)
- Zone_7.Name = "Zone"
- Zone_7.Parent = TP
- Zone_7.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_7.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_7.BorderSizePixel = 0
- Zone_7.Position = UDim2.new(0.11242722, 0, 0.825000048, 0)
- Zone_7.Size = UDim2.new(0, 81, 0, 17)
- Zone_7.Font = Enum.Font.SourceSans
- Zone_7.Text = "Nightmare island"
- Zone_7.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_7.TextSize = 13.000
- Zone_7.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-435, 48582, 9)
- end
- end)
- Zone_8.Name = "Zone"
- Zone_8.Parent = TP
- Zone_8.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_8.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_8.BorderSizePixel = 0
- Zone_8.Position = UDim2.new(0.11242722, 0, 0.655000031, 0)
- Zone_8.Size = UDim2.new(0, 81, 0, 17)
- Zone_8.Font = Enum.Font.SourceSans
- Zone_8.Text = "Planetoid island"
- Zone_8.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_8.TextSize = 14.000
- Zone_8.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-470, 29742, -28)
- end
- end)
- Zone_9.Name = "Zone"
- Zone_9.Parent = TP
- Zone_9.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_9.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_9.BorderSizePixel = 0
- Zone_9.Position = UDim2.new(0.11242722, 0, 0.569999993, 0)
- Zone_9.Size = UDim2.new(0, 81, 0, 17)
- Zone_9.Font = Enum.Font.SourceSans
- Zone_9.Text = "Void island"
- Zone_9.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_9.TextSize = 14.000
- Zone_9.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-438, 22263, 182)
- end
- end)
- Zone_10.Name = "Zone"
- Zone_10.Parent = TP
- Zone_10.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_10.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_10.BorderSizePixel = 0
- Zone_10.Position = UDim2.new(0.11242722, 0, 0.74000001, 0)
- Zone_10.Size = UDim2.new(0, 81, 0, 17)
- Zone_10.Font = Enum.Font.SourceSans
- Zone_10.Text = "Celestial island"
- Zone_10.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_10.TextSize = 14.000
- Zone_10.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-397, 37066, 87)
- end
- end)
- Zone_11.Name = "Zone"
- Zone_11.Parent = TP
- Zone_11.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Zone_11.BorderColor3 = Color3.fromRGB(25, 25, 25)
- Zone_11.BorderSizePixel = 0
- Zone_11.Position = UDim2.new(0.11242722, 0, 0.399999976, 0)
- Zone_11.Size = UDim2.new(0, 81, 0, 17)
- Zone_11.Font = Enum.Font.SourceSans
- Zone_11.Text = "Prosperous island"
- Zone_11.TextColor3 = Color3.fromRGB(255, 255, 255)
- Zone_11.TextSize = 10.000
- Zone_11.MouseButton1Down:connect(function()
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-204, 10003, 520)
- end
- end)
- AllIslands.Name = "All Islands"
- AllIslands.Parent = Main
- AllIslands.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- AllIslands.BorderColor3 = Color3.fromRGB(25, 25, 25)
- AllIslands.BorderSizePixel = 0
- AllIslands.Position = UDim2.new(0.37378642, 0, 0.400000006, 0)
- AllIslands.Size = UDim2.new(0, 104, 0, 28)
- AllIslands.Font = Enum.Font.SourceSans
- AllIslands.Text = "All Islands"
- AllIslands.TextColor3 = Color3.fromRGB(255, 255, 255)
- AllIslands.TextSize = 14.000
- AllIslands.MouseButton1Down:connect(function()
- --fortune
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222, 1064, 594)
- end
- --lava lake
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-218, 1887, 567)
- end
- --Magma pools
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-184, 4318, 452)
- end
- --Prosperous
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-204, 10003, 520)
- end
- --Interstellar
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-301, 15715, 400)
- end
- --void
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-438, 22263, 182)
- end
- --planetoid
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-470, 29742, -28)
- end
- --Celestial
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-397, 37066, 87)
- end
- --Nightmare
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-435, 48582, 9)
- end
- --Spacebound
- for i = 1,45 do
- wait(.08)
- game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-379, 62940, -114)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement