: Your character's height increases by a set amount (usually +1 stud) for every second you spend in the game.
To implement this, your character must be using body scaling. 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 : Your character's height increases by a set