Advertisement
Guest User

Untitled

a guest
Feb 13th, 2020
882
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. --GUI Made by shiro
  2.  
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Open = Instance.new("Frame")
  6. local OpenFunc = Instance.new("TextButton")
  7. local MainFrame = Instance.new("Frame")
  8. local Title = Instance.new("TextLabel")
  9. local Credits = Instance.new("TextLabel")
  10. local Close = Instance.new("TextButton")
  11. local Admin = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16. MainFrame.Active = true
  17. Open.Active = true
  18.  
  19. Open.Name = "Open"
  20. Open.Parent = ScreenGui
  21. Open.BackgroundColor3 = Color3.fromRGB(117, 184, 255)
  22. Open.BorderColor3 = Color3.fromRGB(0, 0, 0)
  23. Open.Position = UDim2.new(0, 0, 0.476722538, 0)
  24. Open.Size = UDim2.new(0, 84, 0, 25)
  25.  
  26. OpenFunc.Name = "OpenFunc"
  27. OpenFunc.Parent = Open
  28. OpenFunc.BackgroundColor3 = Color3.fromRGB(152, 197, 255)
  29. OpenFunc.BorderSizePixel = 0
  30. OpenFunc.Position = UDim2.new(0.161769867, 0, 0.172513485, 0)
  31. OpenFunc.Size = UDim2.new(0, 56, 0, 15)
  32. OpenFunc.Font = Enum.Font.Arial
  33. OpenFunc.Text = "Open"
  34. OpenFunc.TextColor3 = Color3.fromRGB(0, 0, 0)
  35. OpenFunc.TextSize = 14.000
  36.  
  37. MainFrame.Name = "MainFrame"
  38. MainFrame.Parent = ScreenGui
  39. MainFrame.BackgroundColor3 = Color3.fromRGB(117, 184, 255)
  40. MainFrame.BackgroundTransparency = 0.060
  41. MainFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  42. MainFrame.Position = UDim2.new(0.0932358354, 0, 0.40595904, 0)
  43. MainFrame.Size = UDim2.new(0, 239, 0, 100)
  44.  
  45. Title.Name = "Title"
  46. Title.Parent = MainFrame
  47. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. Title.BackgroundTransparency = 1.000
  49. Title.Position = UDim2.new(0.0790000036, 0, -0.159999996, 0)
  50. Title.Size = UDim2.new(0, 200, 0, 50)
  51. Title.Font = Enum.Font.SourceSans
  52. Title.Text = "Humanworth"
  53. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. Title.TextSize = 15.000
  55.  
  56. Credits.Name = "Credits"
  57. Credits.Parent = MainFrame
  58. Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  59. Credits.BackgroundTransparency = 1.000
  60. Credits.BorderColor3 = Color3.fromRGB(27, 42, 53)
  61. Credits.Position = UDim2.new(0.0794979334, 0, 0.630000114, 0)
  62. Credits.Size = UDim2.new(0, 200, 0, 50)
  63. Credits.Font = Enum.Font.SourceSans
  64. Credits.Text = "GUI Made By Shiro"
  65. Credits.TextColor3 = Color3.fromRGB(0, 0, 0)
  66. Credits.TextSize = 15.000
  67.  
  68. Close.Name = "Close"
  69. Close.Parent = MainFrame
  70. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  71. Close.BackgroundTransparency = 1.000
  72. Close.Position = UDim2.new(0.866108775, 0, 0, 0)
  73. Close.Size = UDim2.new(0, 38, 0, 25)
  74. Close.Font = Enum.Font.Code
  75. Close.Text = "X"
  76. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  77. Close.TextSize = 24.000
  78.  
  79. Admin.Name = "Admin"
  80. Admin.Parent = MainFrame
  81. Admin.BackgroundColor3 = Color3.fromRGB(117, 184, 255)
  82. Admin.BackgroundTransparency = 0.200
  83. Admin.BorderColor3 = Color3.fromRGB(0, 0, 0)
  84. Admin.Position = UDim2.new(0.184100419, 0, 0.319999993, 0)
  85. Admin.Size = UDim2.new(0, 150, 0, 37)
  86. Admin.Font = Enum.Font.SourceSans
  87. Admin.Text = "Reviz Admin"
  88. Admin.TextColor3 = Color3.fromRGB(0, 0, 0)
  89. Admin.TextSize = 14.000
  90. MainFrame.Visible = false
  91. --Scripts:
  92.  
  93. OpenFunc.MouseButton1Down:connect(function()
  94. Open.Visible = false
  95. MainFrame.Visible = true
  96. end)
  97.  
  98. Close.MouseButton1Down:connect(function()
  99. Open.Visible = true
  100. MainFrame.Visible = false
  101. end)
  102.  
  103. Admin.MouseButton1Down:connect(function()
  104. loadstring(Game:GetObjects("rbxassetid://1368835475")[1].Source)()
  105.  
  106. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement