Advertisement
UhhLegoboy

BARNEY MORPH

Jan 22nd, 2017
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. wait(0)
  2. --variables
  3. plr = game.Players.LocalPlayer
  4. char = plr.Character
  5. sound = Instance.new("Sound", char.Torso)
  6. bc = char ["Body Colors"]
  7.  
  8. --Skin
  9. bc.HeadColor = BrickColor.new(128,0,128)
  10. bc.LeftArmColor = BrickColor.new(128,0,128)
  11. bc.LeftLegColor = BrickColor.new(128,0,128)
  12. bc.RightArmColor = BrickColor.new(128,0,128)
  13. bc.RightLegColor = BrickColor.new(128,0,128)
  14. bc.TorsoColor = BrickColor.new(128,0,128)
  15.  
  16. --Clothes
  17. shirt = char.Shirt
  18. shirt.ShirtTemplate = "rbxassetid://0"
  19. pants = char.Pants
  20. pants.PantsTemplate = "rbxassetid://0"
  21. Tshirt = char ["Shirt Graphic"]
  22. Tshirt.Graphic = "rbxassetid://0"
  23. --Hat Remove
  24. for _, child in pairs(char:GetChildren()) do
  25. if child.ClassName == 'Accessory' then
  26. child:Destroy()
  27. end
  28. end
  29.  
  30. --Hat
  31. debounce = false
  32. h = Instance.new("Accessory")
  33. p = Instance.new("Part")
  34. h.Name = "Headphones"
  35. p.Parent = h
  36. p.Position = char:findFirstChild("Head").Position
  37. p.Name = "Handle"
  38. p.formFactor = 0
  39. p.Size = Vector3.new(2, 1, 2)
  40. p.BottomSurface = 0
  41. p.TopSurface = 0
  42. p.Locked = true
  43. Hat = Instance.new("SpecialMesh", p)
  44. Hat.MeshId = "http://www.roblox.com/asset/?id=1095510"
  45. Hat.TextureId = "http://www.roblox.com/asset/?id=25766207"
  46. h.Parent = char
  47. h.AttachmentForward = Vector3.new (0, 0, -1)
  48. h.AttachmentPos = Vector3.new(0, -0.25, 0.15)
  49. h.AttachmentRight = Vector3.new (1, 0, 0)
  50. h.AttachmentUp = Vector3.new (0, 1, 0)
  51. wait(0.5)
  52. debounce = true
  53. --Face
  54. Face = char.Head.face
  55. Face.Texture = "http://www.roblox.com/asset/?id=257924711"
  56.  
  57. --Song
  58. sound.SoundId = "rbxassetid://374057291"
  59. sound.Volume = 1
  60. sound.Looped = true
  61. sound : play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement