Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait (0)
- plr = game.Players.LocalPlayer
- char = plr.Character
- --Clothes
- Shirt = char.Shirt
- Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=591793554"
- Pants = char.Pants
- Pants.PantsTemplate = "http://www.roblox.com/asset/?id=502766797"
- --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=1073659"
- Hat.TextureId = "http://www.roblox.com/asset/?id=112346870"
- 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=299543941"
- --Hammer
- Tool = Instance.new("Tool", char)
- Tool.Name = "Hammer"
- Handle = Instance.new("Part", Tool)
- Handle.BottomSurface = "Smooth"
- Handle.TopSurface = "Smooth"
- Handle.Name = "Handle"
- Mesh = Instance.new("SpecialMesh", Handle)
- Mesh.MeshId = "http://www.roblox.com/asset/?id=45021627"
- Mesh.TextureId = "http://www.roblox.com/asset/?id=45021273"
- --remove
- char ["Shirt Graphic"].Graphic = "rbxassetid://0"
- --Sound
- Sound = Instance.new("Sound", char.Torso)
- Sound.SoundId = "http://www.roblox.com/asset/?id=154238035"
- Sound.Volume = 0.8
- Sound.Looped = true
- Sound : play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement