vo11d

FE Giant

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