Advertisement
SpacecowboyHX

cool

Aug 26th, 2020
1,525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. local all = game.Players.LocalPlayer.Character:GetChildren()
  2. for i     = 1,#all do
  3.     wait()
  4.     if all[i].Name == "Head" then
  5.         all[i].Mesh:Destroy()
  6.     else
  7.         if all[i].Name == "Left Arm" or all[i].Name == "Right Arm" or all[i].Name == "Right Leg" or all[i].Name == "Left Leg" then
  8.             all[i]:Destroy()
  9.         else
  10.             if all[i].ClassName == "Shirt" or all[i].ClassName == "Pants" then
  11.                 all[i]:Destroy()
  12.             else
  13.                 if all[i].ClassName == "Accessory" then
  14.                     all[i].Handle.Mesh:Destroy()
  15.                 end
  16.             end
  17.         end
  18.     end
  19.     game.Players.LocalPlayer.Character.Name = " "
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement