cat568

yeah12

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