Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local SwordFling = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- local OpenClose = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- Main.Name = "Main"
- Main.Parent = ScreenGui
- Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Main.Position = UDim2.new(0.0112130567, 0, 0.539346159, 0)
- Main.Size = UDim2.new(0, 311, 0, 276)
- Main.Visible = false
- Main.Active = true
- Main.Draggable = true
- SwordFling.Name = "SwordFling"
- SwordFling.Parent = Main
- SwordFling.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- SwordFling.Position = UDim2.new(0, 0, 0.182456136, 0)
- SwordFling.Size = UDim2.new(0, 141, 0, 50)
- SwordFling.Font = Enum.Font.SciFi
- SwordFling.Text = "SwordFling"
- SwordFling.TextColor3 = Color3.fromRGB(0, 0, 0)
- SwordFling.TextSize = 14.000
- SwordFling.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://5325226148")[1].Source)()
- end)
- Title.Name = "Title"
- Title.Parent = Main
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.Size = UDim2.new(0, 311, 0, 35)
- Title.Font = Enum.Font.SciFi
- Title.Text = "xSlimeNet Hub"
- Title.TextColor3 = Color3.fromRGB(0, 0, 0)
- Title.TextSize = 17.000
- TextButton.Parent = Main
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- TextButton.Position = UDim2.new(0.897106111, 0, 0.0253623184, 0)
- TextButton.Size = UDim2.new(0, 17, 0, 20)
- TextButton.Font = Enum.Font.SciFi
- TextButton.Text = "X"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextSize = 14.000
- close.MouseButton1Down:connect(function()
- Main.Visible = false
- OpenMain.Visible = true
- end)
- OpenClose.Name = "OpenClose"
- OpenClose.Parent = ScreenGui
- OpenClose.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- OpenClose.Position = UDim2.new(0.0112130493, 0, 0.452034891, 0)
- OpenClose.Size = UDim2.new(0, 100, 0, 15)
- OpenClose.Active = true
- OpenClose.Draggable = true
- Open.Name = "Open"
- Open.Parent = OpenClose
- Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Open.Position = UDim2.new(-1.1920929e-07, 0, 0, 0)
- Open.Size = UDim2.new(0, 100, 0, 15)
- Open.Font = Enum.Font.SciFi
- Open.Text = "OPEN"
- Open.TextColor3 = Color3.fromRGB(0, 0, 0)
- Open.TextSize = 14.000
- Open.MouseButton1Down:connect(function()
- OpenMain.Visible = false
- Main.Visible = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement