Advertisement
lolzc4

bigChar

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