RGames

ROBLOX - Furry Madness

Jul 13th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. number = 0
  2. warn('furry pain is coming')
  3. wait(5)
  4. for _,v in pairs (game.Workspace:GetChildren()) do
  5. if v:FindFirstChild('Humanoid') and v:FindFirstChild('Head') then
  6. if v.Name ~= 'RGames1234' then
  7. number = number + 1
  8. --v.Name = 'Furry #'..number
  9. for _,w in pairs (v.Head:GetChildren()) do
  10. if w:IsA('Decal') then
  11. w.Texture = 'rbxassetid://3461578207'
  12. end
  13. end
  14. local randomColor = BrickColor.Random()
  15. for _,x in pairs (v:GetChildren()) do
  16. if x:IsA('Part') or x:IsA('MeshPart') then
  17. x.BrickColor = randomColor
  18. end
  19. end
  20. else
  21. --workspace.RGames1234.Name = 'Anti-Furry'
  22. end
  23. end
  24. end
Add Comment
Please, Sign In to add comment