Advertisement
DrakerMaker

Visible Invis Parts

Nov 4th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. owner.Chatted:connect(function(m)
  2. if m:sub(1,3) == "/sc" then
  3. for i,v in pairs(workspace:GetDescendants()) do
  4. if v:IsA("Part") or v:IsA("MeshPart") then
  5. if v.Transparency == 1 then
  6. if v.Name ~= "HumanoidRootPart" then
  7. v.Transparency = 0
  8. end
  9. end
  10. end
  11. end
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement