fork-K

Material Reflection

Oct 20th, 2023
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. for i,v in pairs(workspace:GetDescendants()) do
  2. if v:IsA("Part") or v:IsA("UnionOperation") then
  3. if not v.Parent:FindFirstChild("Humanoid") then
  4. pcall(function()
  5. v.Reflectance = 0.15
  6. end)
  7. end
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment