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 Test = 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(255, 255, 255)
- Main.Position = UDim2.new(0.0740452036, 0, 0.411042958, 0)
- Main.Size = UDim2.new(0, 283, 0, 314)
- Test.Name = "Test"
- Test.Parent = Main
- Test.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Test.Position = UDim2.new(0.106001556, 0, 0.425766885, 0)
- Test.Size = UDim2.new(0, 200, 0, 50)
- Test.Font = Enum.Font.SourceSans
- Test.Text = "GUI"
- Test.TextColor3 = Color3.fromRGB(0, 0, 0)
- Test.TextSize = 14.000
- Test.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/RNWgaqCE", true))()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement