Advertisement
x83

be small roblox lol

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