Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Mark all props, marks all props that are players pink
- players = game:GetService("Players")
- while wait(1) do
- for i, v in pairs(players:GetChildren()) do
- if v.Name ~= players.LocalPlayer.Name then
- if v.Character and v.Character:FindFirstChild("Object") then
- for j, k in pairs(v.Character.Object:GetChildren()) do
- if k:IsA("Part") then
- k.BrickColor = BrickColor.new("Hot pink")
- end
- end
- end
- end
- end
- end
Add Comment
Please, Sign In to add comment