print 'XybGui v2 by XybName'
--Objects
local main = Instance.new("ScreenGui")
local frame = Instance.new("Frame")
local titler = Instance.new("TextLabel")
local button = Instance.new("TextButton")
local button2 = Instance.new("TextButton")
local cope = Instance.new("TextButton")
--Propreties
main.Name = "main"
main.Parent = game.CoreGui
frame.Name = "frame"
frame.Parent = main
frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
frame.BorderColor3 = Color3.fromRGB(255, 0, 0)
frame.BorderSizePixel = 3
frame.Position = UDim2.new(0,3,0.3,0)
frame.Size = UDim2.new(0, 300, 0, 400)
titler.Name = "titler"
titler.Parent = frame
titler.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
titler.BorderColor3 = Color3.fromRGB(255, 0, 0)
titler.BorderSizePixel = 3
titler.Size = UDim2.new(0, 300, 0, 40)
titler.Font = Enum.Font.SourceSans
titler.Text = "| XybGui v2 by XybName |"
titler.TextColor3 = Color3.fromRGB(255, 255, 255)
titler.TextSize = 24.000
button.Name = "button"
button.Parent = frame
button.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
button.BorderColor3 = Color3.fromRGB(255, 0, 0)
button.BorderSizePixel = 3
button.Position = UDim2.new(0, 0, 0.100000001, 0)
button.Size = UDim2.new(0, 75, 0, 30)
button.Font = Enum.Font.SourceSans
button.Text = "Fly gui"
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.TextSize = 14.000
button.TextWrapped = true
button.MouseButton1Down:connect(function()
loadstring(game:HttpGet("https://[Log in to view URL]",true))()
end)
button2.Name = "button"
button2.Parent = frame
button2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
button2.BorderColor3 = Color3.fromRGB(255, 0, 0)
button2.BorderSizePixel = 3
button2.Position = UDim2.new(0.25, 0, 0.100000001, 0)
button2.Size = UDim2.new(0, 75, 0, 30)
button2.Font = Enum.Font.SourceSans
button2.Text = "Fedora Admin"
button2.TextColor3 = Color3.fromRGB(255, 255, 255)
button2.TextSize = 14.000
button2.TextWrapped = true
button2.MouseButton1Down:connect(function()
loadstring(game:HttpGet('https://[Log in to view URL]'))()
end)
cope.Name = "cope"
cope.Parent = main
cope.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
cope.BorderColor3 = Color3.fromRGB(255, 0, 0)
cope.BorderSizePixel = 3
cope.Position = UDim2.new(0,3,0.3,380)
cope.Size = UDim2.new(0, 300, 0, 20)
cope.Font = Enum.Font.SourceSans
cope.Text = "Close"
cope.TextColor3 = Color3.fromRGB(255, 255, 255)
cope.TextSize = 18.000
cope.MouseButton1Down:connect(function()
if cope.Text == "Close" then
frame.Visible = false
cope.Text = "Open" else
frame.Visible = true
cope.Text = "Close"
end
end)
To embed this project on your website, copy the following code and paste it into your website's HTML: