Advertisement
PixelTactics101

For My Roblox GUI 2

Mar 30th, 2020
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.09 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 RevizAdmin = Instance.new("TextButton")
  10. local SingScript = Instance.new("TextButton")
  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.  
  23. title.Name = "title"
  24. title.Parent = ScreenGui
  25. title.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
  26. title.Position = UDim2.new(0.401818156, 0, 0.261285901, 0)
  27. title.Size = UDim2.new(0, 322, 0, 30)
  28. title.Font = Enum.Font.SciFi
  29. title.Text = "RageMaker v1.2"
  30. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  31. title.TextScaled = true
  32. title.TextSize = 14.000
  33. title.TextWrapped = true
  34.  
  35. RevizAdmin.Name = "Reviz Admin"
  36. RevizAdmin.Parent = ScreenGui
  37. RevizAdmin.BackgroundColor3 = Color3.fromRGB(165, 141, 81)
  38. RevizAdmin.Position = UDim2.new(0.459393919, 0, 0.325581402, 0)
  39. RevizAdmin.Size = UDim2.new(0, 130, 0, 36)
  40. RevizAdmin.Font = Enum.Font.SciFi
  41. RevizAdmin.Text = "Reviz Admin"
  42. RevizAdmin.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. RevizAdmin.TextScaled = true
  44. RevizAdmin.TextSize = 14.000
  45. RevizAdmin.TextWrapped = true
  46. NAMEOFBUTTONHERE.MouseButton1Down:connect(function()
  47. loadstring(game:HttpGet("https://pastebin.com/raw/ibFPdiF7", true)()
  48. end)
  49.  
  50. SingScript.Name = "Sing Script"
  51. SingScript.Parent = ScreenGui
  52. SingScript.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  53. SingScript.Position = UDim2.new(0.416363627, 0, 0.413132697, 0)
  54. SingScript.Size = UDim2.new(0, 109, 0, 32)
  55. SingScript.Font = Enum.Font.SciFi
  56. SingScript.Text = "Sing Script"
  57. SingScript.TextColor3 = Color3.fromRGB(255, 22, 1)
  58. SingScript.TextScaled = true
  59. SingScript.TextSize = 14.000
  60. SingScript.TextWrapped = true
  61. NAMEOFBUTTONHERE.MouseButton1Down:connect(function()
  62. loadstring(game:HttpGet("https://pastebin.com/925YZaw8", true)()
  63. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement