Advertisement
Guest User

small

a guest
Jul 16th, 2021
77,681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 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. local function rm()
  8. for i,v in pairs(Character:GetDescendants()) do
  9. if v:IsA("BasePart") then
  10. if v.Name ~= "Head" then
  11. for i,cav in pairs(v:GetDescendants()) do
  12. if cav:IsA("Attachment") then
  13. if cav:FindFirstChild("OriginalPosition") then
  14. cav.OriginalPosition:Destroy()
  15. end
  16. end
  17. end
  18. v:FindFirstChild("OriginalSize"):Destroy()
  19. if v:FindFirstChild("AvatarPartScaleType") then
  20. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  21. end
  22. end
  23. end
  24. end
  25. end
  26.  
  27. rm()
  28. wait(0.5)
  29. Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
  30. wait(1)
  31.  
  32. rm()
  33. wait(0.5)
  34. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  35. wait(1)
  36.  
  37. rm()
  38. wait(0.5)
  39. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  40. wait(1)
  41.  
  42. rm()
  43. wait(0.5)
  44. Humanoid:FindFirstChild("HeadScale"):Destroy()
  45. wait(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement