wick1214

galaxy

May 4th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. local descendants = game.Players.LocalPlayer.Character:GetDescendants()
  2.  
  3. game.Players.LocalPlayer.Character.Shirt:Destroy()
  4. game.Players.LocalPlayer.Character.Pants:Destroy()
  5. game.Players.LocalPlayer.Character.ShoeL:Destroy()
  6. game.Players.LocalPlayer.Character.ShoeR:Destroy()
  7. game.Players.LocalPlayer.Character.LeftFoot.Transparency = 0
  8. game.Players.LocalPlayer.Character.RightFoot.Transparency = 0
  9. game.Players.LocalPlayer.Character.Head.Transparency = 1
  10. game.Players.LocalPlayer.Character.Head.face:Destroy()
  11. local hat = Instance.new('MeshPart')
  12. hat.Parent = game.Players.LocalPlayer.Character
  13.  
  14.  
  15.  
  16. for index, descendant in pairs(descendants) do
  17. if descendant.ClassName == "MeshPart" then
  18. local space = Instance.new('Decal')
  19. space.Parent = descendant
  20. space.Texture = "rbxassetid://865784610"
  21. space.Face = "Back"
  22. local space = Instance.new('Decal')
  23. space.Parent = descendant
  24. space.Texture = "rbxassetid://865784610"
  25. space.Face = "Bottom"
  26. local space = Instance.new('Decal')
  27. space.Parent = descendant
  28. space.Texture = "rbxassetid://865784610"
  29. space.Face = "Front"
  30. local space = Instance.new('Decal')
  31. space.Parent = descendant
  32. space.Texture = "rbxassetid://865784610"
  33. space.Face = "Left"
  34. local space = Instance.new('Decal')
  35. space.Parent = descendant
  36. space.Texture = "rbxassetid://865784610"
  37. space.Face = "Right"
  38. local space = Instance.new('Decal')
  39. space.Parent = descendant
  40. space.Texture = "rbxassetid://865784610"
  41. space.Face = "Top"
  42. end
  43. end
Add Comment
Please, Sign In to add comment