Advertisement
Guest User

Untitled

a guest
May 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. local message = Instance.new('Hint', workspace)
  2. local text = '“This server has been fucked.”- C00lKidd'
  3. for i = 1, string.len(text) do
  4. message.Text = text:sub(1, i)
  5. wait()
  6. end
  7. for i = 1, 3 do
  8. message.Text = text
  9. wait(.2)
  10. message.Text = text..'|'
  11. wait(.2)
  12. end
  13.  
  14. local Stuff = workspace:GetChildren()
  15. message.Text = 'Found '..tostring(#Stuff)..' instances.'
  16. wait(1)
  17. workspace.Gravity = 1
  18. local count = 0
  19. function update()
  20. message.Text = tostring(math.floor((count/#Stuff)*100))..'% of the workspace has been destroyed.'
  21. end
  22.  
  23. for i = 1, #Stuff do
  24. if (Stuff[i].Name ~= 'Camera') or (Stuff[i].Name ~= 'Terrain') or (Stuff[i].Name ~= 'Baseplate') then
  25. for _,v in pairs(Stuff[i]:GetChildren()) do
  26. if (v:IsA'BasePart') then
  27. v.Color = Color3.new(0, 0, 0)
  28. v.Material = Enum.Material.Neon
  29. v:BreakJoints()
  30. v.Anchored = false
  31. v.Velocity = Vector3.new(math.random(-40, 40), math.random(-40, 40), math.random(-40, 40))
  32. v.RotVelocity = Vector3.new(math.random(-20, 20), math.random(-20, 20), math.random(-20, 20))
  33. end
  34. end
  35. count = count + 1
  36. update()
  37. end
  38. wait(1.25)
  39. end
  40.  
  41. message.Text = 'Goodbye workspace. And now... goodbye for YOU.'
  42. wait(1)
  43. for _,v in pairs(game.Players:GetChildren()) do
  44. v:Kick('Im so fucker')
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement