Kaemi

Untitled

Jul 30th, 2016
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 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=70500233;OverlayTextureId=70500139;};
  6. RightLeg={MeshId=70500254;OverlayTextureId=70500139;};
  7. LeftArm={MeshId=70500162;OverlayTextureId=70500139;};
  8. LeftLeg={MeshId=70500173;OverlayTextureId=70500139;};
  9. Torso={MeshId=70500282;OverlayTextureId=70500139;};
  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. local Hat=Char:FindFirstChild'Hat_F'or Instance.new'Hat';
  22. Hat.AttachmentPos=Vector3.new(0,.15,-.18);
  23. Hat.Name='Hat_F';
  24. local Handle=Hat:FindFirstChild'Handle'or Instance.new('Part',Hat);
  25. if(Handle.Name~='Handle')then Handle.Size=Vector3.new(1,1,1);end;
  26. Handle.BottomSurface=0;
  27. Handle.Name='Handle';
  28. Handle.TopSurface=0;
  29. Handle.Locked=1;
  30. local Mesh=Hat:FindFirstChild'Mesh'or Instance.new('SpecialMesh',Handle);
  31. Mesh.TextureId='http://www.roblox.com/Asset/?id=55726081';
  32. Mesh.MeshId='http://www.roblox.com/asset/?id=55726032';
  33. Mesh.Scale=Vector3.new(1.05,1.05,1.05);
  34.  
  35. Hat.Parent=Char;
  36.  
  37. if(game.PlaceId~=0)then
  38. script.Parent=game:service'ControllerService';--Local remove lol
  39. end;
Add Comment
Please, Sign In to add comment