2021_pogg

localsxe

Sep 11th, 2021 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1.  
  2. local lplr = game.Players.LocalPlayer
  3. local chara = lplr.Character
  4.  
  5. function rm()
  6. for i,v in pairs(chara:GetDescendants()) do
  7. if v:IsA("BasePart") then
  8. if v.Name == ("Handle") or v.Name == ("Head") then
  9. if chara.Head:FindFirstChild("OriginalSize") then
  10. chara.Head.OriginalSize:Destroy()
  11. end
  12.  
  13. else
  14.  
  15. for i,cav in pairs(v:GetDescendants()) do
  16. if cav:IsA("Attachment") then
  17. if cav:FindFirstChild("OriginalPosition") then
  18. cav.OriginalPosition:Destroy()
  19. end
  20. end
  21. end
  22. if v:FindFirstChild("OriginalSize") then
  23. v:FindFirstChild("OriginalSize"):Destroy()
  24. end
  25. if v:FindFirstChild("AvatarPartScaleType") then
  26. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  27. end
  28.  
  29. end
  30. end
  31. end
  32. end
  33.  
  34.  
  35. rm()
  36.  
  37. wait(0.5)
  38.  
  39. game.Players.LocalPlayer.Character.Humanoid.BodyProportionScale:Destroy()
  40.  
  41.  
  42. wait(0.5)
  43.  
  44. rm()
  45.  
  46. wait(0.5)
  47.  
  48. game.Players.LocalPlayer.Character.Humanoid.BodyHeightScale:Destroy()
  49.  
  50.  
  51. wait(0.5)
  52.  
  53. rm()
  54.  
  55. wait(0.5)
  56.  
  57. game.Players.LocalPlayer.Character.Humanoid.BodyWidthScale:Destroy()
  58.  
  59.  
  60. wait(0.5)
  61.  
  62. rm()
  63.  
  64.  
  65. wait(0.5)
  66.  
  67. game.Players.LocalPlayer.Character.Humanoid.BodyDepthScale:Destroy()
  68.  
  69.  
  70. wait(0.5)
  71.  
  72. rm()
  73.  
  74. wait()
  75.  
  76.  
  77. wait(0.5)
  78.  
  79. game.Players.LocalPlayer.Character.Humanoid.HeadScale:Destroy()
  80.  
  81.  
  82. wait(0.5)
Add Comment
Please, Sign In to add comment