If you want to make your own version of this game, you can use a simple script in . This script uses a loop to increase a player's scale every second. Basic Growth Script
: As you grow, your avatar's proportions may become distorted, with elongated legs and heads, eventually looking like a "freak of nature" at extreme heights. Creating the Script in Roblox Studio Roblox But You Get Taller Every Second Script –...
game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) -- Wait for the character to fully load local humanoid = character:WaitForChild("Humanoid") -- Loop that runs every second while true do task.wait(1) -- Increase the BodyHeightScale attribute local heightScale = humanoid:FindFirstChild("BodyHeightScale") if heightScale then heightScale.Value = heightScale.Value + 0.1 -- Adjust this for faster/slower growth end end end) end) Use code with caution. Copied to clipboard Roblox but you grow TALLER every second If you want to make your own version
: Your character's height increases by a set amount (usually +1 stud) for every second you spend in the game. Creating the Script in Roblox Studio game