SebTDZ

Untitled

Apr 27th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. local LH = {}
  2. if game.Workspace.TheOfficialSeb.Humanoid.RigType == 0 then
  3.     for i = 0, 7 do
  4.         table.insert(LH, game.Workspace.TheOfficialSeb.Humanoid:GetLimb(i))
  5.     end
  6. else
  7.     for i = 0, 7 do
  8.         if i == 0 then
  9.             table.insert(LH, game.Workspace.TheOfficialSeb.Humanoid:GetLimb(0))
  10.         else
  11.             for i, pz in pairs(game.Workspace.TheOfficialSeb.Humanoid:GetLimb(i)) do
  12.                 table.insert(LH, pz)
  13.             end
  14.         end
  15.     end
  16. end
  17. for i, p in pairs(LH) do
  18.     print(p.Name)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment