Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(0.2)
- local char = workspace.adchand2
- local d = char:GetChildren()
- for i=1, #d do
- if (d[i].className == "Hat") then
- d[i]:remove()
- print("Removed hat")
- elseif (d[i].className == "Shirt") then
- d[i]:remove()
- print("Removed shirt")
- elseif (d[i].className == "Pants") then
- d[i]:remove()
- print("Removed pants")
- elseif (d[i].className == "ShirtGraphic") then
- d[i]:remove()
- print("Removed shirt graphic")
- elseif (d[i].className == "CharacterMesh") then
- d[i]:remove()
- print("Removed character meshes")
- end
- end
- local body = char["Body Colors"]
- body:Destroy()
- print("Removed old body colours")
- local nbod = Instance.new("BodyColors",char)
- print("Added new body colours")
- char.Head.face.Texture = "http://www.roblox.com/asset/?id=318401263"
- print("Changed face texture")
- local bgm = Instance.new("Sound",char.Torso)
- bgm.Volume = 1
- bgm.Pitch = 1
- bgm.SoundId = "rbxassetid://420736255"
- bgm.Looped = true
- bgm:Play()
- print("Added BGM")
- print("The main script is now complete!")
- wait(2)
- -- © adchand2 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement