Advertisement
PixelTactics101

For My Roblox GUI 3

Mar 30th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.14 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 RevizAdmin = Instance.new("TextButton")
  9. local SingScript = Instance.new("TextButton")
  10. local title = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. main.Name = "main"
  18. main.Parent = ScreenGui
  19. main.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  20. main.Position = UDim2.new(0.401818156, 0, 0.261285901, 0)
  21. main.Size = UDim2.new(0, 323, 0, 385)
  22. main.Visible = false
  23. main.Active = true
  24. main.raggable = true
  25.  
  26. RevizAdmin.Name = "Reviz Admin"
  27. RevizAdmin.Parent = main
  28. RevizAdmin.BackgroundColor3 = Color3.fromRGB(165, 141, 81)
  29. RevizAdmin.Position = UDim2.new(0.298403203, 0, 0.133373603, 0)
  30. RevizAdmin.Size = UDim2.new(0, 130, 0, 36)
  31. RevizAdmin.Font = Enum.Font.SciFi
  32. RevizAdmin.Text = "Reviz Admin"
  33. RevizAdmin.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. RevizAdmin.TextScaled = true
  35. RevizAdmin.TextSize = 14.000
  36. RevizAdmin.TextWrapped = true
  37. RevizAdmin.MouseButton1Down:connect(function()
  38. loadstring(game:HttpGet("https://pastebin.com/raw/ibFPdiF7", true)()
  39. end)
  40.  
  41.  
  42. SingScript.Name = "Sing Script"
  43. SingScript.Parent = main
  44. SingScript.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  45. SingScript.Position = UDim2.new(0.0448466018, 0, 0.285859972, 0)
  46. SingScript.Size = UDim2.new(0, 109, 0, 32)
  47. SingScript.Font = Enum.Font.SciFi
  48. SingScript.Text = "Sing Script"
  49. SingScript.TextColor3 = Color3.fromRGB(255, 22, 1)
  50. SingScript.TextScaled = true
  51. SingScript.TextSize = 14.000
  52. SingScript.TextWrapped = true
  53. SingScript.MouseButton1Down:connect(function()
  54. loadstring(game:HttpGet("https://pastebin.com/raw/ibFPdiF7", true)()
  55. end)
  56.  
  57. title.Name = "title"
  58. title.Parent = main
  59. title.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
  60. title.Position = UDim2.new(-0.000658631325, 0, 0.00154563785, 0)
  61. title.Size = UDim2.new(0, 322, 0, 30)
  62. title.Font = Enum.Font.SciFi
  63. title.Text = "RageMaker v1.2"
  64. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  65. title.TextScaled = true
  66. title.TextSize = 14.000
  67. title.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement