Advertisement
memesbruh03

character

Aug 30th, 2016
476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.02 KB | None | 0 0
  1. wait(0.2)
  2. local char = workspace.adchand2
  3. local d = char:GetChildren()
  4. for i=1, #d do
  5. if (d[i].className == "Hat") then
  6. d[i]:remove()
  7. print("Removed hat")
  8. elseif (d[i].className == "Shirt") then
  9. d[i]:remove()
  10. print("Removed shirt")
  11. elseif (d[i].className == "Pants") then
  12. d[i]:remove()
  13. print("Removed pants")
  14. elseif (d[i].className == "ShirtGraphic") then
  15. d[i]:remove()
  16. print("Removed shirt graphic")
  17. elseif (d[i].className == "CharacterMesh") then
  18. d[i]:remove()
  19. print("Removed character meshes")
  20. end
  21. end
  22. local body = char["Body Colors"]
  23. body:Destroy()
  24. print("Removed old body colours")
  25. local nbod = Instance.new("BodyColors",char)
  26. print("Added new body colours")
  27. char.Head.face.Texture = "http://www.roblox.com/asset/?id=318401263"
  28. print("Changed face texture")
  29. local bgm = Instance.new("Sound",char.Torso)
  30. bgm.Volume = 1
  31. bgm.Pitch = 1
  32. bgm.SoundId = "rbxassetid://420736255"
  33. bgm.Looped = true
  34. bgm:Play()
  35. print("Added BGM")
  36. print("The main script is now complete!")
  37. wait(2)
  38.  
  39. -- © adchand2 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement