Advertisement
SkySploit_Sploit

Destroy World Gui

Nov 16th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextButton = Instance.new("TextButton")
  7. --Properties:
  8. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9.  
  10. Frame.Parent = ScreenGui
  11. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  12. Frame.BackgroundTransparency = 0.55000001192093
  13. Frame.Position = UDim2.new(0.329919517, 0, 0, 0)
  14. Frame.Size = UDim2.new(0, 413, 0, 92)
  15.  
  16. TextButton.Parent = ScreenGui
  17. TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
  18. TextButton.Position = UDim2.new(0.354059994, 0, 0.0287443325, 0)
  19. TextButton.Size = UDim2.new(0, 346, 0, 52)
  20. TextButton.Font = Enum.Font.SciFi
  21. TextButton.Text = "Click Me To End The World"
  22. TextButton.TextColor3 = Color3.new(1, 1, 1)
  23. TextButton.TextScaled = true
  24. TextButton.TextSize = 14
  25. TextButton.TextWrapped = true
  26. -- Scripts:
  27. function SCRIPT_KSPT83_FAKESCRIPT() -- TextButton.LocalScript
  28. getfenv().script = Instance.new('LocalScript', TextButton)
  29.  
  30.  
  31. script.Parent.MouseButton1Click:Connect(function()
  32. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  33. for name,child in pairs(game.Workspace:GetDescendants())do
  34. if not child:IsA("Terrain") then
  35. if child.Name ~= "DoNotTouch" then
  36. wait(0.01)
  37. local ball = Instance.new("Part", game.Workspace)
  38. ball.Name = "DoNotTouch"
  39. ball.Color = Color3.fromRGB(245,245,220)
  40. ball.Shape = "Ball"
  41. ball.Anchored = true
  42. if child:IsA("Part") or child:IsA("TrussPart") or child:IsA("BasePart") or child:IsA("WedgePart") then
  43. ball.Position = child.Position
  44. end
  45. child:Destroy()
  46. script.Parent.Text = "Destroying: "..child.Name
  47. end
  48. end
  49. end
  50. wait(3)
  51. local bom = Instance.new("Explosion", game.Players.LocalPlayer.Character)
  52. script.Parent.Parent:Destroy()
  53. end)
  54.  
  55.  
  56.  
  57.  
  58. end
  59. coroutine.resume(coroutine.create(SCRIPT_KSPT83_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement