Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. --[[Add local/ at the beginning if you're using it at a script builder__Created by lordsheen]]
  2.  
  3. script.Name="Jim"
  4.  
  5. pcall(function()
  6. for i,v in pairs(game.Players.LocalPlayer.StarterGear:children()) do
  7. v:Remove()
  8. end
  9. end)
  10.  
  11.  
  12. BigTorso=Instance.new("SpecialMesh",game.Players.LocalPlayer.Character.Torso)
  13. BigTorso.Offset=Vector3.new(3,2,0)
  14. BigTorso.MeshType="Brick"
  15. BigTorso.Scale=Vector3.new(1,7,1)
  16.  
  17. a=game.Players.LocalPlayer.Character["Right Arm"]
  18. aa=game.Players.LocalPlayer.Character.Torso["Right Shoulder"]
  19. a.Size=Vector3.new(1,14,1)
  20. aa.C0 = CFrame.new(1.5,(a.Size.y/2)-0.5,0) * CFrame.Angles(0,math.pi/2,0)
  21. aa.C1 = CFrame.new(0,(a.Size.y/2)-0.5,0) * CFrame.Angles(0,math.pi/2,0)
  22. aa.Parent=game.Players.LocalPlayer.Character.Torso
  23.  
  24. b=game.Players.LocalPlayer.Character["Right Leg"]
  25. bb=game.Players.LocalPlayer.Character.Torso["Right Hip"]
  26. b.Size=Vector3.new(1,19,1)
  27. bb.C0 = CFrame.new(0.5,-b.Size.y/2+(BigTorso.Scale.y)-0.5,0) * CFrame.Angles(0,math.pi/2,0)
  28. bb.C1 = CFrame.new(0,b.Size.y/2,0) * CFrame.Angles(0,math.pi/2,0)
  29. bb.Parent=game.Players.LocalPlayer.Character.Torso
  30.  
  31. c=game.Players.LocalPlayer.Character["Left Arm"]
  32. cc=game.Players.LocalPlayer.Character.Torso["Left Shoulder"]
  33. c.Size=Vector3.new(1,14,1)
  34. cc.C0 = CFrame.new(-1.5,(c.Size.y/2)-0.5,0) * CFrame.Angles(0,-math.pi/2,0)
  35. cc.C1 = CFrame.new(0,(c.Size.y/2)-0.5,0) * CFrame.Angles(0,-math.pi/2,0)
  36. cc.Parent=game.Players.LocalPlayer.Character.Torso
  37.  
  38. d=game.Players.LocalPlayer.Character["Left Leg"]
  39. dd=game.Players.LocalPlayer.Character.Torso["Left Hip"]
  40. d.Size=Vector3.new(1,19,1)
  41. dd.C0 = CFrame.new(-0.5,-(d.Size.y/2)+(BigTorso.Scale.y)-0.5,0) * CFrame.Angles(0,-math.pi/2,0)
  42. dd.C1 = CFrame.new(0,d.Size.y/2,0) * CFrame.Angles(0,-math.pi/2,0)
  43. dd.Parent=game.Players.LocalPlayer.Character.Torso
  44.  
  45. e=game.Players.LocalPlayer.Character["Head"]
  46. ee=game.Players.LocalPlayer.Character.Torso["Neck"]
  47. ee.C0=CFrame.new(0,7,0,-1,-0,-0,0,0,1,0,1,0)
  48. ee.Parent=game.Players.LocalPlayer.Character.Torso
  49.  
  50. script.Parent=game.Players.LocalPlayer.StarterGear --Change Backpack to StarterGear for it to work throughout the rest of the server
  51.  
  52. for i,v in pairs(game.Players.LocalPlayer.StarterGear:children()) do
  53. print(v.Name)
  54. if i<=#game.Players.LocalPlayer.StarterGear:children()-1 then
  55. v:Remove()
  56. end
  57. end
  58. while wait() do
  59. pcall(function() game.Players.LocalPlayer.Character.Shirt:Remove() end)
  60. pcall(function() game.Players.LocalPlayer.Character.Pants:Remove() end)
  61. pcall(function() game.Players.LocalPlayer.Character["Shirt Graphic"]:Remove() end)
  62. pcall(function() game.Players.LocalPlayer.Character.Torso.roblox:Remove() end)
  63. for i,v in pairs(game.Players.LocalPlayer.Character:children()) do
  64. if v:IsA("CharacterMesh") then
  65. v:Remove()
  66. end
  67. end
  68. end
  69.  
  70.  
  71.  
  72. --[[
  73. c/print("RS")
  74. print(game.Players.LocalPlayer.Character.Torso['Right Shoulder'].c0)
  75. print("RH")
  76. print(game.Players.LocalPlayer.Character.Torso['Right Hip'].c0)
  77. print("LS")
  78. print(game.Players.LocalPlayer.Character.Torso['Left Shoulder'].c0)
  79. print("LH")
  80. print(game.Players.LocalPlayer.Character.Torso['Left Hip'].c0)
  81. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement