Pastebin
local ScreenGui = Instance.new("ScreenGui")
local main = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local autokill = Instance.new("TextButton")
local speed = Instance.new("TextButton")
local close = Instance.new("TextButton")
local opemain = Instance.new("Frame")
local open = Instance.new("TextButton")
--Properties:
ScreenGui.Parent = game.CoreGui
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
main.Name = "main"
main.Parent = ScreenGui
main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
main.Position = UDim2.new(0.0127591677, 0, 0.456035733, 0)
main.Size = UDim2.new(0, 278, 0, 161)
main.Visible = false
main.Active = true
main.Draggable = true
TextLabel.Parent = main
TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
TextLabel.Size = UDim2.new(0, 278, 0, 37)
TextLabel.Font = Enum.Font.SourceSans
TextLabel.Text = "GUI Ex Ryuuz"
TextLabel.TextColor3 = Color3.fromRGB(170, 0, 0)
TextLabel.TextSize = 20.000
autokill.Name = "autokill"
autokill.Parent = main
autokill.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
autokill.Position = UDim2.new(0.0719424486, 0, 0.29192546, 0)
autokill.Size = UDim2.new(0, 236, 0, 37)
autokill.Font = Enum.Font.SourceSans
autokill.Text = "Auto kill"
autokill.TextColor3 = Color3.fromRGB(0, 0, 0)
autokill.TextScaled = true
autokill.TextSize = 20.000
autokill.TextWrapped = true
autokill.MouseButton1Down:connect(function()
_G.Settings = {
Lobby = {
["Difficulty"] = "Easy", -- Difficulty for Dungeon
["PartyOnly"] = true, -- Dont change if you want to create dungeon privately
["Hardcore"] = true, --Hardcore of Dungeon
["Location"] = "Frozen Depths" -- Where to Farm
},
AutoSell = {
["Enabled"] = true, -- true == on , false == off , Gonna sell all items except legendaries and equippeds
["Sell Weapons"] = true, -- Auto Sell Swords
["Sell Armors"] = true, -- Auto Sell Armors
["Sell Abilities"] = true, -- Auto Sell Abilities
["Sell Cosmetics"] = true -- Auto Sell Cosmetics
},
AutoUpgrade = {
["Enabled"] = false, -- true == on , false == off , Gonna upgrade items which are chosen below
["Upgrade Weapon"] = true, -- Auto Upgrade Weapon
["Upgrade Armor"] = true -- Auto Upgrade Armor
},
AutoPoint = {
["Enabled"] = true, -- true == on , false == off , Gonna auto put points which you chose below
["Point to Put"] = "Strength" -- Point to Auto Put
},
BugFixer = {
["Enabled"] = true, -- true == on , false == off , Gonna get back to lobby after seconds which you set below passes, good if you want to stay 24/7 afk
["Leave Dungeon After"] = 300 -- Seonds to leave after like if you clear dungeon in 2 mins ( 120 seconds ) put it to 200
},
MoreSettings = {
["Wait Time"] = 5, -- Wait time before auto executing , you can test it by yourself since it states for your pc
["Fast Leave"] = true -- Gonna leave asap when dungeon ends / boss dies ( saves about 30 secs per dungeon )
}
}
loadstring(game:HttpGet("#", true))()
end)
speed.Name = "speed"
speed.Parent = main
speed.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
speed.Position = UDim2.new(0.0719424486, 0, 0.652173877, 0)
speed.Size = UDim2.new(0, 236, 0, 37)
speed.Font = Enum.Font.SourceSans
speed.Text = "Speed"
speed.TextColor3 = Color3.fromRGB(0, 0, 0)
speed.TextScaled = true
speed.TextSize = 20.000
speed.TextWrapped = true
speed.MouseButton1Down:connect(function()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 60
end)
close.Name = "close"
close.Parent = main
close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
close.Position = UDim2.new(0.769784153, 0, 0, 0)
close.Size = UDim2.new(0, 64, 0, 37)
close.Font = Enum.Font.SourceSans
close.Text = "X"
close.TextColor3 = Color3.fromRGB(255, 255, 255)
close.TextSize = 30.000
close.MouseButton1Down:connect(function()
main.Visible = false
opemain.Visible = true
end)
opemain.Name = "opemain"
opemain.Parent = ScreenGui
opemain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
opemain.Position = UDim2.new(0.0191387534, 0, 0.360655725, 0)
opemain.Size = UDim2.new(0, 102, 0, 37)
opemain.Active = true
opemain.Draggable = true
open.Name = "open"
open.Parent = opemain
open.BackgroundColor3 = Color3.fromRGB(85, 0, 0)
open.Position = UDim2.new(-0.0392156839, 0, 0, 0)
open.Size = UDim2.new(0, 109, 0, 37)
open.Font = Enum.Font.SourceSans
open.Text = "Open"
open.TextColor3 = Color3.fromRGB(170, 0, 0)
open.TextSize = 30.000
open.MouseButton1Down:connect(function()
opemain.Visible = false
main.Visible = true
end)
Select all text above, copy it, then paste into your executor.