Advertisement
Ryan_Lubia

Fe tall man.

Aug 5th, 2021
2,613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. local LocalPlayer = game:GetService("Players").LocalPlayer
  2. local Character = LocalPlayer.Character
  3. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  4.  
  5. function rm()
  6. for i,v in pairs(Character:GetDescendants()) do
  7. if v:IsA("BasePart") then
  8. if v.Name == "Handle" or v.Name == "Head" then
  9. if Character.Head:FindFirstChild("OriginalSize") then
  10. Character.Head.OriginalSize:Destroy()
  11. end
  12. else
  13. for i,cav in pairs(v:GetDescendants()) do
  14. if cav:IsA("Attachment") then
  15. if cav:FindFirstChild("OriginalPosition") then
  16. cav.OriginalPosition:Destroy()
  17. end
  18. end
  19. end
  20. v:FindFirstChild("OriginalSize"):Destroy()
  21. if v:FindFirstChild("AvatarPartScaleType") then
  22. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  23. end
  24. end
  25. end
  26. end
  27. end
  28.  
  29. rm()
  30. wait(0.5)
  31. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  32. wait(1)
  33.  
  34. rm()
  35. wait(0.5)
  36. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  37. wait(1)
  38.  
  39. rm()
  40. wait(0.5)
  41. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  42. wait(1)
  43.  
  44. rm()
  45. wait(0.5)
  46. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  47. wait(1)
  48.  
  49. rm()
  50. wait(0.5)
  51. Humanoid:FindFirstChild("HeadScale"):Destroy()
  52. wait(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement