Hello
Badges

Activity Feed
Created a new thread : Giant Script Not Working
A few years ago, the Roblox grow script worked normally. Nowadays, after dozens of updates, the script no longer works. I have already made modifications that fixed the error in the console, but fixing the error did not allow it to work.
The script is here:
--// Made by "failedmite57926" //
--// variables //
local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = LocalPlayer.Character
local Humanoid = Character:FindFirstChildOfClass("Humanoid")
--// function //
function rm()
for i,v in pairs(Character:GetDescendants()) do
if v:IsA("BasePart") then
if v.Name == "Handle" or v.Name == "Head" then
if Character.Head:FindFirstChild("OriginalSize") then
Character.Head.OriginalSize:Destroy()
end
else
for i,cav in pairs(v:GetDescendants()) do
if cav:IsA("Attachment") then
if cav:FindFirstChild("OriginalPosition") then
cav.OriginalPosition:Destroy()
end
end
end
v:FindFirstChild("OriginalSize"):Destroy()
if v:FindFirstChild("AvatarPartScaleType") then
v:FindFirstChild("AvatarPartScaleType"):Destroy()
end
end
end
end
end
--// script //
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("HeadScale"):Destroy()
--// end //
I fixed the script errors as the console reported. Even after fixing the problem, it still persisted, but now without any console errors.
--// Made by "failedmite57926" // Edited by "Liver zMods" //
--// variables //
local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = LocalPlayer.Character
local Humanoid = Character:FindFirstChildOfClass("Humanoid")
local number = 0
--// function //
function rm()
for i,v in pairs(Character:GetDescendants()) do
pcall(function()
if v:IsA("BasePart") or v:IsA("MeshPart") or v:IsA("MeshId") then
if v.Name == "Handle" or v.Name == "Head" then
if Character.Head:FindFirstChild("OriginalSize") then
Character.Head.OriginalSize:Destroy()
end
else
for i,cav in pairs(v:GetDescendants()) do
if cav:IsA("Attachment") then
if cav:FindFirstChild("OriginalPosition") then
cav.OriginalPosition:Destroy()
end
end
end
if v:FindFirstChild("OriginalSize") then
v:FindFirstChild("OriginalSize"):Destroy()
end
if v:FindFirstChild("AvatarPartScaleType") then
v:FindFirstChild("AvatarPartScaleType"):Destroy()
end
end
end
end)
end
end
--// script //
rm()
local BodyProportionScale = Humanoid:FindFirstChild("BodyProportionScale")
if BodyProportionScale then
BodyProportionScale:Destroy()
print("Destroyed" .. BodyProportionScale.Name)
else
number = (number + 1)
warn("Something went wrong " .. number)
end
wait(0.5)
rm()
local BodyHeightScale = Humanoid:FindFirstChild("BodyHeightScale")
if BodyHeightScale then
BodyHeightScale:Destroy()
print("Destroyed" .. BodyHeightScale.Name)
else
number = (number + 1)
warn("Something went wrong " .. number)
end
wait(1)
rm()
local BodyWidthScale = Humanoid:FindFirstChild("BodyWidthScale")
if BodyWidthScale then
BodyWidthScale:Destroy()
print("Destroyed" .. BodyWidthScale.Name)
else
number = (number + 1)
warn("Something went wrong " .. number)
end
wait(1)
rm()
local BodyDepthScale = Humanoid:FindFirstChild("BodyDepthScale")
if BodyDepthScale then
BodyDepthScale:Destroy()
print("Destroyed" .. BodyDepthScale.Name)
else
number = (number + 1)
warn("Something went wrong " .. number)
end
wait(1)
rm()
local HeadScale = Humanoid:FindFirstChild("HeadScale")
if HeadScale then
HeadScale:Destroy()
print("Destroyed" .. HeadScale.Name)
else
number = (number + 1)
warn("Something went wrong " .. number)
end
number = 0
--// end //