Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- while wait() do
- for i,v in pairs(Players:GetChildren()) do
- if v.Character then
- for o,j in pairs(v.Character:GetChildren()) do
- if v.Character then
- if j:IsA("Part") then
- j.Shape = math.random(0, 2)
- j.Color = Color3.new(math.random(0, 255), math.random(0, 255), math.random(0, 255))
- elseif j:IsA("MeshPart") then
- j.Color = Color3.new(math.random(0, 255), math.random(0, 255), math.random(0, 255))
- end
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement