Advertisement
mR_LXCKED

hi

Jul 13th, 2021
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local Test = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = ScreenGui
  17. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. Main.Position = UDim2.new(0.0740452036, 0, 0.411042958, 0)
  19. Main.Size = UDim2.new(0, 283, 0, 314)
  20.  
  21. Test.Name = "Test"
  22. Test.Parent = Main
  23. Test.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Test.Position = UDim2.new(0.106001556, 0, 0.425766885, 0)
  25. Test.Size = UDim2.new(0, 200, 0, 50)
  26. Test.Font = Enum.Font.SourceSans
  27. Test.Text = "GUI"
  28. Test.TextColor3 = Color3.fromRGB(0, 0, 0)
  29. Test.TextSize = 14.000
  30. Test.MouseButton1Down:connect(function()
  31. loadstring(game:HttpGet("https://pastebin.com/raw/RNWgaqCE", true))()
  32. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement