Advertisement
xiaxiaokid

Untitled

Jul 20th, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. local Player = game.Players.localPlayer
  2. local Character = Player.Character
  3. local Humanoid = Character.Humanoid
  4. local Head = Character.Head
  5. local Torso = Character.Torso
  6.  
  7. local Orin = "rbxassetid://629947734"
  8. Head.face.Texture = Orin
  9. spawn(function()
  10. while wait() do
  11. Head.BrickColor = BrickColor.new("White")
  12. RightArm.BrickColor = BrickColor.new("White")
  13. LeftArm.BrickColor = BrickColor.new("White")
  14. Torso.BrickColor = BrickColor.new("Really black")
  15. RightLeg.BrickColor = BrickColor.new("Really black")
  16. LeftLeg.BrickColor = BrickColor.new("Really black")
  17. end
  18. end)
  19. for i,v in pairs(Character:children()) do
  20. if v:IsA("Shirt") then
  21. v:Destroy()
  22. end
  23. end
  24. for i,v in pairs(Character:children()) do
  25. if v:IsA("Pants") then
  26. v:Destroy()
  27. end
  28. end
  29.  
  30.  
  31. for i,v in pairs(Character:children()) do
  32. if v:IsA("Accessory") then
  33. v:Destroy()
  34. end
  35. end
  36. for i,v in pairs(Character:children()) do
  37. if v:IsA("Hair") then
  38. v:Destroy()
  39. end
  40. end
  41.  
  42. shirt = Instance.new("Shirt", Character)
  43. shirt.Name = "Shirt"
  44. pants = Instance.new("Pants", Character)
  45. pants.Name = "Pants"
  46. Character.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=346137113"
  47. Character.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=752480227"
  48. Humanoid.Animator.Parent = nil
  49. Character.Animate.Parent = nil
  50. hat = Instance.new("Hat", game.ReplicatedStorage)
  51. hat.Name = "Guestium Hat"
  52. hat.AttachmentForward = Vector3.new(0,0,-1)
  53. hat.AttachmentPos = Vector3.new(0,-0.05,0.1)
  54. hat.AttachmentRight = Vector3.new(1,0,0)
  55. hat.AttachmentUp = Vector3.new(0,1,0)
  56. local handle = Instance.new("Part",hat)
  57. handle.Rotation = Vector3.new(0, 90, 0)
  58. handle.Name = "Handle"
  59. handle.TopSurface = "Smooth"
  60. handle.BottomSurface = "Smooth"
  61. handle.Size = Vector3.new(1,1,2)
  62. local mesh = Instance.new("SpecialMesh",handle)
  63. mesh.MeshType = "FileMesh"
  64. mesh.MeshId = "http://www.roblox.com/asset/?id=46834172"
  65. mesh.TextureId = "rbxassetid://340317428"
  66. mesh.Scale = Vector3.new(1.05,1.05,1.05)
  67. hat.Parent = Character
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement