Advertisement
Legendofawesomeness3

spaceman

Jun 25th, 2016
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. local Users=game:service'Players';
  2. local User=Users.LocalPlayer;
  3. local Char=User.Character;
  4. local CharMeshes={
  5. RightArm={MeshId=28268200;OverlayTextureId=28268380;};
  6. RightLeg={MeshId=28268263;OverlayTextureId=28268380;};
  7. LeftArm={MeshId=28268164;OverlayTextureId=28268380;};
  8. LeftLeg={MeshId=28268301;OverlayTextureId=28268380;};
  9. Torso={MeshId=28268222;OverlayTextureId=28268380;};
  10. };
  11.  
  12. for i,v in next,CharMeshes do
  13. local Mesh=Char:FindFirstChild(i..'Mesh')or Instance.new('CharacterMesh',Char);
  14. Mesh.Name=i..'Mesh';
  15. Mesh.BodyPart=i;
  16. for i,v in next,v do
  17. Mesh[i],i,v=v,nil;
  18. end;
  19. i,v=nil;
  20. end;
  21.  
  22.  
  23.  
  24. if(game.PlaceId~=0)then
  25. script.Parent=game:service'ControllerService';--Local remove lol
  26. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement