Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Player = game.Players.LocalPlayer
  2. local Char = Player.Character
  3. if Char:FindFirstChild("Shirt") ~= nil then
  4. Char.Shirt:Destroy()
  5. Instance.new("Shirt",Char).ShirtTemplate = "http://www.roblox.com/asset/?id=4609119"
  6. end
  7. if Char:FindFirstChild("Pants") ~= nil then
  8. Char.Pants:Destroy()
  9. Instance.new("Pants",Char).PantsTemplate = "http://www.roblox.com/asset/?id=4609244"
  10. end
  11.  
  12. local Mask = Instance.new("Part",Char)
  13. Mask.CanCollide = false
  14. Mask.Locked = true
  15. Mask.TopSurface = 10
  16. Mask.BottomSurface = 10
  17. Mask.FormFactor = 3
  18. Mask.Size = Vector3.new(1,1,1)
  19. local MaskMesh = Instance.new("SpecialMesh",Mask)
  20. MaskMesh.Scale = Vector3.new(0.125,0.125,0.125)
  21. MaskMesh.MeshId = "http://www.roblox.com/asset/?id=5158270"
  22. MaskMesh.TextureId = "http://www.roblox.com/asset/?id=5158267"
  23. local MaskWeld = Instance.new("Weld",Head)
  24. MaskWeld.Part0 = Head
  25. MaskWeld.Part1 = Mask
  26. 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