Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Player = game.Players.LocalPlayer
  2. local mouse = Player:GetMouse()
  3. local Char = Player.Character
  4. if Char:FindFirstChild("Shirt") ~= nil then
  5. Char.Shirt:Destroy()
  6. Instance.new("Shirt",Char).ShirtTemplate = "http://www.roblox.com/asset/?id=4609119"
  7. end
  8. if Char:FindFirstChild("Pants") ~= nil then
  9. Char.Pants:Destroy()
  10. Instance.new("Pants",Char).PantsTemplate = "http://www.roblox.com/asset/?id=4609244"
  11. end
  12. local Head = Char.Head
  13. local LA = Char:findFirstChild("Left Arm")
  14. local RA = Char:findFirstChild("Right Arm")
  15. local LL = Char:findFirstChild("Left Leg")
  16. local RL = Char:findFirstChild("Right Leg")
  17. local T = Char:findFirstChild("Torso")
  18. local LS = T:findFirstChild("Left Shoulder")
  19. local RS = T:findFirstChild("Right Shoulder")
  20. local LH = T:findFirstChild("Left Hip")
  21. local RH = T:findFirstChild("Right Hip")
  22. local Neck = T:findFirstChild("Neck")
  23. local HM = Char:findFirstChild("HumanoidRootPart")
  24. local RJ = Char:findFirstChild("HumanoidRootPart"):findFirstChild("RootJoint")
  25. local WLS = Instance.new("Motor", T)
  26. WLS.C0 = CFrame.new(-1.5, 0.5, 0)
  27. WLS.C1 = CFrame.new(0, 0.5, 0)
  28. WLS.Part0 = T
  29. WLS.Part1 = LA
  30. local WRS = Instance.new("Motor", T)
  31. WRS.Part0 = T
  32. WRS.Part1 = RA
  33. WRS.C0 = CFrame.new(1.5, 0.5, 0)
  34. WRS.C1 = CFrame.new(0, 0.5, 0)
  35. local WLH = LH
  36. local WRH = RH
  37. local LSC0 = WLS.C0
  38. local RSC0 = WRS.C0
  39. local LHC0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  40. local LHC1 = CFrame.new(-0.5, 1 ,0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  41. local RHC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  42. local RHC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  43. local WRJ = RJ
  44. local RJC0 = WRJ.C0
  45. local RJC1 = WRJ.C1
  46. local NC0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  47. local Run = game:GetService("RunService")
  48. local noweightprop = PhysicalProperties.new(0,0.3,0.5,0,0) --apply to parts you add by doing part.CustomPhysicalProperties = noweightprop
  49. local Mask = Instance.new("Part",Char)
  50. Mask.CanCollide = false
  51. Mask.Locked = true
  52. Mask.TopSurface = 10
  53. Mask.BottomSurface = 10
  54. Mask.FormFactor = 3
  55. Mask.Size = Vector3.new(1,1,1)
  56. local MaskMesh = Instance.new("SpecialMesh",Mask)
  57. MaskMesh.Scale = Vector3.new(0.125,0.125,0.125)
  58. MaskMesh.MeshId = "http://www.roblox.com/asset/?id=5158270"
  59. MaskMesh.TextureId = "http://www.roblox.com/asset/?id=5158267"
  60. local MaskWeld = Instance.new("Weld",Head)
  61. MaskWeld.Part0 = Head
  62. MaskWeld.Part1 = Mask
  63. MaskWeld.C0 = CFrame.new(0,0.075,-0.65) *CFrame.Angles(-math.pi/2,0,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement