The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Fe Tall | R15 games only script pastebin roblox
By Fe Tall | R15 games only on 2024-11-11 08:00 am | Syntax: LUA | Views: 13



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  
  2. --Originally made by failedmite57926
  3.  
  4. size = 5 -- from 1 to 5
  5.  
  6. local LocalPlayer = game:GetService("Players").LocalPlayer
  7. local Character = LocalPlayer.Character
  8. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  9.  
  10. function rm()
  11.  
  12. for i,v in pairs(Character:GetDescendants()) do
  13. if v:IsA("BasePart") then
  14. if v.Name == "Handle" or v.Name == "Head" then
  15. if Character.Head:FindFirstChild("OriginalSize") then
  16. Character.Head.OriginalSize:Destroy()
  17. end
  18. else
  19. for i,cav in pairs(v:GetDescendants()) do
  20. if cav:IsA("Attachment") then
  21. if cav:FindFirstChild("OriginalPosition") then
  22. cav.OriginalPosition:Destroy()
  23. end
  24. end
  25. end
  26. v:FindFirstChild("OriginalSize"):Destroy()
  27. if v:FindFirstChild("AvatarPartScaleType") then
  28. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  29. end
  30. end
  31. end
  32. end
  33. end
  34.  
  35.  
  36. if size == 1 then
  37. rm()
  38. wait(0.5)
  39. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  40. wait(1)
  41. end
  42.  
  43. if size == 2 then
  44. rm()
  45. wait(0.5)
  46. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  47. wait(1)
  48.  
  49. rm()
  50. wait(0.5)
  51. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  52. wait(1)
  53. end
  54.  
  55. if size == 3 then
  56. rm()
  57. wait(0.5)
  58. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  59. wait(1)
  60.  
  61. rm()
  62. wait(0.5)
  63. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  64. wait(1)
  65.  
  66. rm()
  67. wait(0.5)
  68. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  69. wait(1)
  70. end
  71.  
  72. if size == 4 then
  73. rm()
  74. wait(0.5)
  75. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  76. wait(1)
  77.  
  78. rm()
  79. wait(0.5)
  80. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  81. wait(1)
  82.  
  83. rm()
  84. wait(0.5)
  85. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  86. wait(1)
  87.  
  88. rm()
  89. wait(0.5)
  90. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  91. wait(1)
  92. end
  93.  
  94.  
  95. if size == 5 then
  96. rm()
  97. wait(0.5)
  98. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  99. wait(1)
  100.  
  101. rm()
  102. wait(0.5)
  103. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  104. wait(1)
  105.  
  106. rm()
  107. wait(0.5)
  108. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  109. wait(1)
  110.  
  111. rm()
  112. wait(0.5)
  113. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  114. wait(1)
  115.  
  116. rm()
  117. wait(0.5)
  118. Humanoid:FindFirstChild("HeadScale"):Destroy()
  119. wait(1)
  120. end