Advertisement
Guest User

Morph Script Roblox

a guest
Jan 6th, 2015
29,912
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. plr = script.Parent.Parent.Parent.Parent
  2. char = plr.Character
  3.  
  4. repeat wait() until char ~= nil
  5. ----------Just removing hats and decals vvv----------
  6. script.Parent.MouseButton1Click:connect(function()
  7. local d = char:GetChildren()
  8. for i=1, #d do
  9. if (d[i].className == "Hat") then
  10. d[i]:Destroy()
  11. end
  12. end
  13. local q = char.Head:GetChildren()
  14.  
  15. for i=1, #q do
  16. if (q[i].className == "Decal") then
  17. q[i]:Destroy()
  18. end
  19. end
  20. char.Head.Transparency = 1 -- Head becomes invisible here
  21. local BL = game.ServerStorage.DogLeftBack.BackLeft:Clone()
  22. BL.Parent = char["Left Leg"]
  23. local BR = game.ServerStorage.DogRightBack.BackRight:Clone()
  24. BR.Parent = char["Right Leg"]
  25. local FL = game.ServerStorage.DogLeftFront.FrontLeft:Clone()
  26. FL.Parent = char["Left Arm"]
  27. local FR = game.ServerStorage.DogRightFront.FrontRight:Clone()
  28. FR.Parent = char["Right Arm"]
  29. local T = game.ServerStorage.DogTorso.Torso:Clone()
  30. T.Parent = char.Torso
  31. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement