Advertisement
A_GUES

What name script or nan

Jul 24th, 2023
1,509
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. if v:FindFirstChild("OriginalSize") then
  21. v:FindFirstChild("OriginalSize"):Destroy()
  22. end
  23. if v:FindFirstChild("AvatarPartScaleType") then
  24. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  25. end
  26. end
  27. end
  28. end
  29. end
  30.  
  31. function destroyPropertyIfExists(property)
  32. if Humanoid:FindFirstChild(property) then
  33. Humanoid:FindFirstChild(property):Destroy()
  34. end
  35. end
  36.  
  37. rm()
  38. wait(0.5)
  39. destroyPropertyIfExists("BodyProportionScale")
  40. wait(1)
  41.  
  42. rm()
  43. wait(0.5)
  44. destroyPropertyIfExists("BodyHeightScale")
  45. wait(1)
  46.  
  47. rm()
  48. wait(0.5)
  49. destroyPropertyIfExists("BodyWidthScale")
  50. wait(1)
  51.  
  52. rm()
  53. wait(0.5)
  54. destroyPropertyIfExists("BodyDepthScale")
  55. wait(1)
  56.  
  57. rm()
  58. wait(0.5)
  59. destroyPropertyIfExists("HeadScale")
  60. wait(1)
  61.  
Advertisement
Comments
  • A_GUES
    301 days
    # text 1.23 KB | 0 0
    1. script v2:
    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. wait(0.5)
    33. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
    34. wait(1)
    35.  
    36. rm()
    37. wait(0.5)
    38. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
    39. wait(1)
    40.  
    41. rm()
    42. wait(0.5)
    43. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
    44. wait(1)
    45.  
    46. rm()
    47. wait(0.5)
    48. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
    49. wait(1)
    50.  
    51. rm()
    52. wait(0.5)
    53. Humanoid:FindFirstChild("HeadScale"):Destroy()
    54. wait(1)
Add Comment
Please, Sign In to add comment
Advertisement