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 Name = Instance.new("TextLabel")
- local Test1 = Instance.new("TextButton")
- local Test2 = Instance.new("TextButton")
- local Test3 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
- main.BorderColor3 = Color3.fromRGB(255, 0, 255)
- main.BorderSizePixel = 5
- main.Position = UDim2.new(0.0105152475, 0, 0.0844793692, 0)
- main.Size = UDim2.new(0, 294, 0, 372)
- Name.Name = "Name"
- Name.Parent = main
- Name.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
- Name.BorderColor3 = Color3.fromRGB(255, 0, 255)
- Name.BorderSizePixel = 5
- Name.Size = UDim2.new(0, 294, 0, 50)
- Name.Font = Enum.Font.SourceSans
- Name.Text = "RoGhoul Test?"
- Name.TextColor3 = Color3.fromRGB(255, 255, 255)
- Name.TextScaled = true
- Name.TextSize = 14.000
- Name.TextWrapped = true
- Test1.Name = "Test1"
- Test1.Parent = main
- Test1.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- Test1.BorderSizePixel = 0
- Test1.Position = UDim2.new(0.159863949, 0, 0.225806445, 0)
- Test1.Size = UDim2.new(0, 200, 0, 50)
- Test1.Font = Enum.Font.Nunito
- Test1.Text = "Kill All"
- Test1.TextColor3 = Color3.fromRGB(255, 255, 255)
- Test1.TextScaled = true
- Test1.TextSize = 14.000
- Test1.TextWrapped = true
- Test2.Name = "Test2"
- Test2.Parent = main
- Test2.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- Test2.BorderSizePixel = 0
- Test2.Position = UDim2.new(0.159863949, 0, 0.5, 0)
- Test2.Size = UDim2.new(0, 200, 0, 50)
- Test2.Font = Enum.Font.Nunito
- Test2.Text = "Just Kidding"
- Test2.TextColor3 = Color3.fromRGB(255, 255, 255)
- Test2.TextScaled = true
- Test2.TextSize = 14.000
- Test2.TextWrapped = true
- Test3.Name = "Test3"
- Test3.Parent = main
- Test3.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- Test3.BorderSizePixel = 0
- Test3.Position = UDim2.new(0.159863949, 0, 0.766129017, 0)
- Test3.Size = UDim2.new(0, 200, 0, 50)
- Test3.Font = Enum.Font.Nunito
- Test3.Text = "Hahaha"
- Test3.TextColor3 = Color3.fromRGB(255, 255, 255)
- Test3.TextScaled = true
- Test3.TextSize = 14.000
- Test3.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement