Advertisement
Prephy

leg

Apr 14th, 2022
1,175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. local Figure = owner.Character
  2. local funnies = Figure:GetDescendants()
  3.  
  4. for j=1,#funnies do
  5. if funnies[j].Name~="Left Leg" and funnies[j].Name~="Right Leg" and funnies[j].Name~="HumanoidRootPart" and funnies[j]:IsA("BasePart") then
  6. funnies[j].Size = Vector3.new(funnies[j].Size.X,0,funnies[j].Size.Z) funnies[j].Transparency=1 funnies[j].CanCollide=false
  7. end
  8. if funnies[j]:IsA("Decal") then
  9. funnies[j].Transparency=1 end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement