Inoob8C

Untitled

Apr 5th, 2022
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. --[[simple script made by failedmite57926
  2. Character settings:
  3. Body Type - 0%
  4. Height - 90%
  5. Width - 70%
  6. Head - 100%
  7. Proportions - 100%
  8. ]]--
  9.  
  10. local LocalPlayer = game:GetService("Players").LocalPlayer
  11. local Character = LocalPlayer.Character
  12. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  13.  
  14. local function rm()
  15. for i,v in pairs(Character:GetDescendants()) do
  16. if v:IsA("BasePart") then
  17. if v.Name ~= "Head" then
  18. for i,cav in pairs(v:GetDescendants()) do
  19. if cav:IsA("Attachment") then
  20. if cav:FindFirstChild("OriginalPosition") then
  21. cav.OriginalPosition:Destroy()
  22. end
  23. end
  24. end
  25. v:FindFirstChild("OriginalSize"):Destroy()
  26. if v:FindFirstChild("AvatarPartScaleType") then
  27. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  28. end
  29. end
  30. end
  31. end
  32. end
  33.  
  34. rm()
  35. wait(0.5)
  36. Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
  37. wait(0.2)
  38.  
  39. rm()
  40. wait(0.5)
  41. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  42. wait(0.2)
  43.  
  44. rm()
  45. wait(0.5)
  46. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  47. wait(0.2)
  48.  
  49. rm()
  50. wait(0.5)
  51. Humanoid:FindFirstChild("HeadScale"):Destroy()
  52. wait(0.2)
Advertisement
Add Comment
Please, Sign In to add comment