Advertisement
wick1214

galaxu

May 5th, 2019
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 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. game.Players.LocalPlayer.Character.Hat:Destroy()
  12. game.Players.LocalPlayer.Character.Hat2:Destroy()
  13. local hat = Instance.new('MeshPart')
  14. hat.Parent = game.Players.LocalPlayer.Character
  15.  
  16.  
  17.  
  18. for index, descendant in pairs(descendants) do
  19. if descendant.ClassName == "MeshPart" then
  20. local space = Instance.new('Decal')
  21. space.Parent = descendant
  22. space.Texture = "rbxassetid://865784610"
  23. space.Face = "Back"
  24. local space = Instance.new('Decal')
  25. space.Parent = descendant
  26. space.Texture = "rbxassetid://865784610"
  27. space.Face = "Bottom"
  28. local space = Instance.new('Decal')
  29. space.Parent = descendant
  30. space.Texture = "rbxassetid://865784610"
  31. space.Face = "Front"
  32. local space = Instance.new('Decal')
  33. space.Parent = descendant
  34. space.Texture = "rbxassetid://865784610"
  35. space.Face = "Left"
  36. local space = Instance.new('Decal')
  37. space.Parent = descendant
  38. space.Texture = "rbxassetid://865784610"
  39. space.Face = "Right"
  40. local space = Instance.new('Decal')
  41. space.Parent = descendant
  42. space.Texture = "rbxassetid://865784610"
  43. space.Face = "Top"
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement