Advertisement
PixelTactics101

For My Roblox GUI

Mar 30th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.46 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 title = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. main.Name = "main"
  17. main.Parent = ScreenGui
  18. main.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  19. main.Position = UDim2.new(0.401818156, 0, 0.261285901, 0)
  20. main.Size = UDim2.new(0, 323, 0, 385)
  21.  
  22. title.Name = "title"
  23. title.Parent = ScreenGui
  24. title.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
  25. title.Position = UDim2.new(0.401818156, 0, 0.261285901, 0)
  26. title.Size = UDim2.new(0, 322, 0, 30)
  27. title.Font = Enum.Font.SciFi
  28. title.Text = "RageMaker v1.2"
  29. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  30. title.TextScaled = true
  31. title.TextSize = 14.000
  32. title.TextWrapped = true
  33.  
  34. TextButton.Parent = ScreenGui
  35. TextButton.BackgroundColor3 = Color3.fromRGB(165, 141, 81)
  36. TextButton.Position = UDim2.new(0.459393919, 0, 0.325581402, 0)
  37. TextButton.Size = UDim2.new(0, 130, 0, 36)
  38. TextButton.Font = Enum.Font.SciFi
  39. TextButton.Text = "Reviz Admin"
  40. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. TextButton.TextScaled = true
  42. TextButton.TextSize = 14.000
  43. TextButton.TextWrapped = true
  44. NAMEOFBUTTONHERE.MouseButton1Down:connect(function()
  45. loadstring(game:HttpGet("https://pastebin.com/raw/ibFPdiF7", true)()
  46. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement