Advertisement
idkllal

Untitled

Apr 17th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. ----""
  2. local plg = game:GetService("Players").FearlessDarklord2233.PlayerGui
  3. local p = workspace.FearlessDarklord2233
  4.  
  5. local g = Instance.new("ScreenGui",plg)
  6. g.Name = "LOL"
  7. local fr = Instance.new("Frame",g)
  8.  
  9. fr.BackgroundColor3 = Color3.fromRGB(32, 166, 157)
  10. fr.Name = "LOL2"
  11. fr.Size = UDim2.new(0.1, 0,0.4, 0)
  12. fr.BackgroundTransparency = 1
  13.  
  14. local btn = Instance.new("TextButton",g)
  15. btn.Name = "LOL3"
  16. btn.Size = UDim2.new(0.1, 0,0.1, 0)
  17.  
  18. btn.Position = UDim2.new(0.01, 0,0.4, 0)
  19. btn.Text = "Clear Workspace"
  20. btn.MouseButton1Down:connect(function()
  21. p:Destroy()
  22. workspace:ClearAllChildren()
  23. p:Destroy()
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement