Categories > Exploiting > Scripts >

Giant Script Not Working

New Reply

Liver_zMods

Liver zMods

Posts: 1

Threads: 1

Joined: Dec, 2023

Reputation: 0

Posted

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 //

 

  • 0

  • Comment

Hello

Posts: 414

Threads: 3

Joined: Apr, 2021

Reputation: 43

Replied

I believe you are having issues with rejectcharacterdeletions. Which is currently enabled on all experiences, more information can be found here.  https://devforum.roblox.com/t/action-required-workspacerejectcharacterdeletions/2196175

  • 0

  • Comment

I am Styx/John/JJ.

I specialize in Luau, and I don't accept commissions. I am Jupiter's current and only founder, a known script for Prison Life. Jupiter is open-source to provide transparency.

Login to unlock the reply editor

Add your reply

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )