Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- input
- function GetRecursiveChildren(Part, Children)
- for _, Part in pairs(Part:GetChildren()) do
- pcall(function()
- table.insert(Children, Part)
- GetRecursiveChildren(Part, Children)
- end)
- end
- return Children
- end
- local Phrases = {
- "THIS IS YOUR END >:)", --TEXT YOU WANT HERE
- }
- while wait (0) do
- for _, Part in pairs(GetRecursiveChildren(game, {})) do
- pcall(function()
- if not Part:IsA("Player")then
- pcall(function() Part.Name = Phrases[math.random(1, #Phrases)] end)
- pcall(function() Part.Text = Phrases[math.random(1, #Phrases)] end)
- pcall(function() Part.Color = Color3.new(155,0,0)end) --COLOR YOU WANT HERE
- pcall(function() Part.Color3 = Color3.new(155,0,0)end) --COLOR YOU WANT HERE
- end
- pcall(function()
- Part.TextColor3 = Color3.new(155,0,0) --COLOR YOU WANT HERE
- Part.BackgroundColor3 = Color3.new(155,0,0) --COLOR YOU WANT HERE
- Part.BorderColor3 = Color3.new(155,0,0) --COLOR YOU WANT HERE
- end)
- end)
- end
- end
- --Edited By Intensivelake39#2430
- --Destroy Server Beyond Belief Edited
Add Comment
Please, Sign In to add comment