Advertisement
Webcat70

Webcat70's Seizure Script

Dec 11th, 2018
1,322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. while wait(0.1) do
  2.     for i,v in pairs(game.Players:GetChildren()) do
  3.         if game.Players:FindFirstChild(v) then
  4.             if v:FindFirstChild("Character") then
  5.                 for i,b in pairs(v.Character:GetChildren()) do
  6.                     if b:IsA("Part") or b:IsA("MeshPart") then
  7.                         b.BrickColor=BrickColor.Random()
  8.                     end
  9.                 end
  10.             end
  11.         end
  12.     end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement