Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Destroy = Instance.new("TextButton")
  8.  
  9. -- Properties
  10.  
  11. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  12.  
  13. Destroy.Name = "Destroy"
  14. Destroy.Parent = ScreenGui
  15. Destroy.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Destroy.Position = UDim2.new(0, 0, 0.0150753856, 0)
  17. Destroy.Size = UDim2.new(0, 200, 0, 50)
  18. Destroy.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  19. Destroy.Font = Enum.Font.SourceSansBold
  20. Destroy.Text = "Destroy all players"
  21. Destroy.TextColor3 = Color3.new(0, 0, 0)
  22. Destroy.TextScaled = true
  23. Destroy.TextSize = 14
  24. Destroy.TextWrapped = true
  25.  
  26. -- Scripts
  27. Destroy.MouseButton1Click:connect(function(plr)
  28. for i, v in pairs(game.Players:GetChildren()) do
  29. workspace:WaitForChild(v.Name):Destroy()
  30. end
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement