Advertisement
FabianRBLX

Big Avatar Script

Jul 25th, 2021
9,250
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 1 0
  1. --Shit ass script made by failedmite57926
  2.  
  3. local LocalPlayer = game:GetService("Players").LocalPlayer
  4. local Character = LocalPlayer.Character
  5. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  6.  
  7. function rm()
  8. for i,v in pairs(Character:GetDescendants()) do
  9. if v:IsA("BasePart") then
  10. if v.Name == "Handle" or v.Name == "Head" then
  11. if Character.Head:FindFirstChild("OriginalSize") then
  12. Character.Head.OriginalSize:Destroy()
  13. end
  14. else
  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. v:FindFirstChild("OriginalSize"):Destroy()
  23. if v:FindFirstChild("AvatarPartScaleType") then
  24. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  25. end
  26. end
  27. end
  28. end
  29. end
  30.  
  31. rm()
  32.  
  33. wait(0.5)
  34.  
  35. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  36.  
  37. wait(1)
  38.  
  39. rm()
  40.  
  41. wait(0.5)
  42.  
  43. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  44.  
  45. wait(1)
  46.  
  47. rm()
  48.  
  49. wait(0.5)
  50.  
  51. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  52.  
  53. wait(1)
  54.  
  55. rm()
  56.  
  57. wait(0.5)
  58.  
  59. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  60.  
  61. wait(1)
  62.  
  63. rm()
  64.  
  65. wait()
  66.  
  67. wait(0.5)
  68.  
  69. Humanoid:FindFirstChild("HeadScale"):Destroy()
  70.  
  71. wait(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement