Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(0)
- --variables
- plr = game.Players.LocalPlayer
- char = plr.Character
- sound = Instance.new("Sound", char.Torso)
- bc = char ["Body Colors"]
- --Skin
- bc.HeadColor = BrickColor.new(128,0,128)
- bc.LeftArmColor = BrickColor.new(128,0,128)
- bc.LeftLegColor = BrickColor.new(128,0,128)
- bc.RightArmColor = BrickColor.new(128,0,128)
- bc.RightLegColor = BrickColor.new(128,0,128)
- bc.TorsoColor = BrickColor.new(128,0,128)
- --Clothes
- shirt = char.Shirt
- shirt.ShirtTemplate = "rbxassetid://0"
- pants = char.Pants
- pants.PantsTemplate = "rbxassetid://0"
- Tshirt = char ["Shirt Graphic"]
- Tshirt.Graphic = "rbxassetid://0"
- --Hat Remove
- for _, child in pairs(char:GetChildren()) do
- if child.ClassName == 'Accessory' then
- child:Destroy()
- end
- end
- --Hat
- debounce = false
- h = Instance.new("Accessory")
- p = Instance.new("Part")
- h.Name = "Headphones"
- p.Parent = h
- p.Position = char:findFirstChild("Head").Position
- p.Name = "Handle"
- p.formFactor = 0
- p.Size = Vector3.new(2, 1, 2)
- p.BottomSurface = 0
- p.TopSurface = 0
- p.Locked = true
- Hat = Instance.new("SpecialMesh", p)
- Hat.MeshId = "http://www.roblox.com/asset/?id=1095510"
- Hat.TextureId = "http://www.roblox.com/asset/?id=25766207"
- h.Parent = char
- h.AttachmentForward = Vector3.new (0, 0, -1)
- h.AttachmentPos = Vector3.new(0, -0.25, 0.15)
- h.AttachmentRight = Vector3.new (1, 0, 0)
- h.AttachmentUp = Vector3.new (0, 1, 0)
- wait(0.5)
- debounce = true
- --Face
- Face = char.Head.face
- Face.Texture = "http://www.roblox.com/asset/?id=257924711"
- --Song
- sound.SoundId = "rbxassetid://374057291"
- sound.Volume = 1
- sound.Looped = true
- sound : play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement