Advertisement
LXVX

Script

Feb 21st, 2023
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. for i,v in pairs(game:GetService("Workspace")["Glass Bridge"].GlassPane:GetDescendants()) do
  2. if v:IsA("BasePart") then
  3. if v.CanCollide == true then
  4. v.Color = Color3.fromRGB(0, 255, 0)
  5. else
  6.  
  7. v.Color = Color3.fromRGB(255, 0, 0)
  8.  
  9. end
  10. end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement