lolita5432

>:D

May 19th, 2018
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. -- input
  2. function GetRecursiveChildren(Part, Children)
  3. for _, Part in pairs(Part:GetChildren()) do
  4. pcall(function()
  5. table.insert(Children, Part)
  6. GetRecursiveChildren(Part, Children)
  7. end)
  8. end
  9. return Children
  10. end
  11.  
  12.  
  13. local Phrases = {
  14. "THIS IS YOUR END >:)", --TEXT YOU WANT HERE
  15. }
  16. while wait (0) do
  17. for _, Part in pairs(GetRecursiveChildren(game, {})) do
  18. pcall(function()
  19. if not Part:IsA("Player")then
  20. pcall(function() Part.Name = Phrases[math.random(1, #Phrases)] end)
  21. pcall(function() Part.Text = Phrases[math.random(1, #Phrases)] end)
  22. pcall(function() Part.Color = Color3.new(155,0,0)end) --COLOR YOU WANT HERE
  23. pcall(function() Part.Color3 = Color3.new(155,0,0)end) --COLOR YOU WANT HERE
  24. end
  25. pcall(function()
  26. Part.TextColor3 = Color3.new(155,0,0) --COLOR YOU WANT HERE
  27. Part.BackgroundColor3 = Color3.new(155,0,0) --COLOR YOU WANT HERE
  28. Part.BorderColor3 = Color3.new(155,0,0) --COLOR YOU WANT HERE
  29. end)
  30. end)
  31. end
  32. end
  33. --Edited By Intensivelake39#2430
  34. --Destroy Server Beyond Belief Edited
Add Comment
Please, Sign In to add comment