Advertisement
EnglishV3rmillion

Untitled

Jun 25th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. --Script made by SpoingeBob (ewum)
  2. -- Do not try to copy this script
  3. -- Thanks for using this script
  4. -- Enjoy
  5. ------------------------------------
  6. local plr = game.Workspace:WaitForChild("SpoingeBob")
  7. local hum = plr.Humanoid
  8.  
  9. local weldtorso = Instance.new("Weld",plr.Torso)
  10. local weldarmleft = Instance.new("Weld",plr:WaitForChild("Left Arm"))
  11. local weldarmright = Instance.new("Weld",plr:WaitForChild("Right Arm"))
  12. local weldlegleft = Instance.new("Weld",plr:WaitForChild("Left Leg"))
  13. local weldlegright = Instance.new("Weld",plr:WaitForChild("Right Leg"))
  14. local weldhead = Instance.new("Weld",plr:WaitForChild("Head"))
  15.  
  16.  
  17. local torso = Instance.new("Part",plr)
  18. local armleft = Instance.new("Part",plr)
  19. local armright = Instance.new("Part",plr)
  20. local legleft = Instance.new("Part",plr)
  21. local legright = Instance.new("Part",plr)
  22. local head = Instance.new("Part",plr)
  23.  
  24. torso.Size = Vector3.new(2, 2, 2)
  25. armleft.Position = Vector3.new(0, 0, 3)
  26. armleft.Size = Vector3.new(1,2,1)
  27. armright.Size = Vector3.new(1,2,1)
  28. armright.Position = Vector3.new(3, 0, 0)
  29. legleft.Size = Vector3.new(1, 2, 1)
  30. legleft.Position = Vector3.new(0, 0, 2)
  31. legright.Position = Vector3.new(2, 0, 0)
  32. legright.Size = Vector3.new(1, 2, 1)
  33. head.Size = Vector3.new(1.5, 1.5, 1.5)
  34.  
  35.  
  36. plr.Head.Transparency = 1
  37. plr.Torso.Transparency = 1
  38. plr:WaitForChild("Right Arm").Transparency = 1
  39. plr:WaitForChild("Right Leg").Transparency = 1
  40. plr:WaitForChild("Left Arm").Transparency = 1
  41. plr:WaitForChild("Left Leg").Transparency = 1
  42.  
  43.  
  44. weldtorso.Part1 = torso
  45. weldtorso.Part0 = plr.Torso
  46. weldarmleft.Part1 = armleft
  47. weldarmleft.Part0 = plr:WaitForChild("Left Arm")
  48. weldarmright.Part1 = armright
  49. weldarmright.Part0 = plr:WaitForChild("Right Arm")
  50. weldlegleft.Part1 = legleft
  51. weldlegleft.Part0 = plr:WaitForChild("Left Leg")
  52. weldlegright.Part1 = legright
  53. weldlegright.Part0 = plr:WaitForChild("Right Leg")
  54. weldhead.Part1 = head
  55. weldhead.Part0 = plr.Head
  56.  
  57. armleft.Name = "NewLeftArm"
  58. armright.Name = "NewRightArm"
  59. legleft.Name = "NewLeftLeg"
  60. legright.Name = "NewRightLeg"
  61. torso.Name = "NewTorso"
  62. head.Name = "NewHead"
  63.  
  64. armleft.Material = "Metal"
  65. armright.Material = "Metal"
  66. legleft.Material = "Metal"
  67. legright.Material = "Metal"
  68. armleft.Material = "Metal"
  69. torso.Material = "Metal"
  70. head.Material = "Neon"
  71. armleft.BackSurface = "SmoothNoOutlines"
  72. armleft.BottomSurface = "SmoothNoOutlines"
  73. armleft.FrontSurface = "SmoothNoOutlines"
  74. armleft.LeftSurface = "SmoothNoOutlines"
  75. armleft.RightSurface = "SmoothNoOutlines"
  76. armleft.TopSurface = "SmoothNoOutlines"
  77.  
  78. armright.BackSurface = "SmoothNoOutlines"
  79. armright.BottomSurface = "SmoothNoOutlines"
  80. armright.FrontSurface = "SmoothNoOutlines"
  81. armright.LeftSurface = "SmoothNoOutlines"
  82. armright.RightSurface = "SmoothNoOutlines"
  83. armright.TopSurface = "SmoothNoOutlines"
  84.  
  85. torso.BackSurface = "SmoothNoOutlines"
  86. torso.BottomSurface = "SmoothNoOutlines"
  87. torso.FrontSurface = "SmoothNoOutlines"
  88. torso.LeftSurface = "SmoothNoOutlines"
  89. torso.RightSurface = "SmoothNoOutlines"
  90. torso.TopSurface = "SmoothNoOutlines"
  91.  
  92. head.BackSurface = "SmoothNoOutlines"
  93. head.BottomSurface = "SmoothNoOutlines"
  94. head.FrontSurface = "SmoothNoOutlines"
  95. head.LeftSurface = "SmoothNoOutlines"
  96. head.RightSurface = "SmoothNoOutlines"
  97. head.TopSurface = "SmoothNoOutlines"
  98.  
  99. legright.FrontSurface = "SmoothNoOutlines"
  100. legright.LeftSurface = "SmoothNoOutlines"
  101. legright.RightSurface = "SmoothNoOutlines"
  102. legright.TopSurface = "SmoothNoOutlines"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement