Advertisement
Guest User

REVIZ ADMIN

a guest
Aug 22nd, 2020
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextButton = Instance.new("TextButton")
  4.  
  5. --Properties:
  6.  
  7. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  8. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. Frame.Parent = ScreenGui
  11. Frame.BackgroundColor3 = Color3.fromRGB(0, 255, 29)
  12. Frame.Position = UDim2.new(0.0358598344, 0, 0.628992617, 0)
  13. Frame.Size = UDim2.new(0, 378, 0, 266)
  14.  
  15. TextButton.Parent = Frame
  16. TextButton.BackgroundColor3 = Color3.fromRGB(170, 85, 255)
  17. TextButton.Position = UDim2.new(0.042328041, 0, 0.0789473653, 0)
  18. TextButton.Size = UDim2.new(0, 333, 0, 220)
  19. TextButton.Font = Enum.Font.SciFi
  20. TextButton.Text = "CLICK HERE FOR ADMIN!"
  21. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  22. TextButton.TextScaled = true
  23. TextButton.TextSize = 14.000
  24. TextButton.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement