RoSploitzer

Blox Hunt Turn Props Pink

Jun 12th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. -- Mark all props, marks all props that are players pink
  2. players = game:GetService("Players")
  3. while wait(1) do
  4. for i, v in pairs(players:GetChildren()) do
  5. if v.Name ~= players.LocalPlayer.Name then
  6. if v.Character and v.Character:FindFirstChild("Object") then
  7. for j, k in pairs(v.Character.Object:GetChildren()) do
  8. if k:IsA("Part") then
  9. k.BrickColor = BrickColor.new("Hot pink")
  10. end
  11. end
  12. end
  13. end
  14. end
  15. end
Add Comment
Please, Sign In to add comment