Advertisement
subaru112g

invisible buggy

Jan 24th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. local plr = owner
  2. local atv = game.Workspace["Atv Buggy Car"]
  3. atv.DriveSeat.Transparency = 1
  4. atv.Body.Seat.Transparency = 1
  5. for i,v in pairs(atv.Body:GetChildren()) do
  6. if not(v.ClassName == "Model") then
  7. v.Transparency = 1
  8.  
  9. end
  10. end
  11. for i,v in pairs(atv.Body.Model:GetChildren()) do
  12. if not(v.ClassName == "Model") then
  13. v.Transparency = 1
  14.  
  15. end
  16. end
  17.  
  18. for i,v in pairs(atv.Wheels:GetChildren()) do
  19.  
  20. for i,s in pairs(v:GetChildren()) do
  21. if s.Name == "Parts" then
  22. for i,p in pairs(s.Wheel:GetChildren()) do
  23. if not(p.ClassName == "Model") then
  24. p.Transparency = 1
  25. if p.Name == "Part" then
  26. for i,d in pairs(p:GetChildren()) do
  27.  
  28. d.Transparency = 1
  29.  
  30. end
  31. end
  32. end
  33. end
  34. end
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement