Advertisement
RandomNewbieScripter

Night GUI

Aug 25th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. print("Loading GUI...")
  2. --[[
  3.     //Desc: A Gui for doing abuse things on
  4.     //Creator: Anonymous
  5. --]]
  6. p = game.Players.LocalPlayer
  7. local sg = Instance.new("ScreenGui", p.PlayerGui)
  8.  
  9.  
  10. -- Create Frame
  11. local frame = Instance.new("Frame")
  12. frame.Parent = sg
  13. frame.Position = UDim2.new(0, 0, 0.315, 0)
  14. frame.Size = UDim2.new(0, 424, 0, 280)
  15. --Label
  16. local TB = Instance.new("TextBox")
  17.  
  18.  
  19. -- Create our first button
  20.  
  21. local b1 = Instance.new("TextButton", sg)
  22. b1.Position = UDim2.new(0, 0, 0.315, 50)
  23. b1.Size = UDim2.new(0, 150, 0, 50)
  24. b1.BackgroundColor3 = BrickColor.White().Color
  25. b1.Text = "Run 0bama Script"
  26. b1.MouseButton1Down:connect(function()
  27.     b1.Text = ":^)"
  28.     require(260531276)
  29. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement