#how to squish player like pancake

1 messages · Page 1 of 1 (latest)

coral flicker
#

idk if im dumb, but i found that bodyheightscale can help but idk what i am doing wrong? plz help

past tideBOT
#

studio** You are now Level 2! **studio

coral flicker
coral flicker
#

nvm

static snow
#
task.wait(1)

local char = game.Players.LocalPlayer.Character
local humanoid = char:WaitForChild("Humanoid")
local humanoidDesc
repeat wait()  humanoidDesc = humanoid:FindFirstChildOfClass("HumanoidDescription")
until humanoidDesc ~= nil

if humanoid and humanoidDesc then
    
    humanoidDesc.BodyHeightScale = 0.1
    humanoid:ApplyDescription(humanoidDesc)
    print(char, humanoid)
end
static snow
coral flicker
#

turns out i had to put it into a server script

#

sorrycrying

static snow
#

its fine

lusty sundial
#

wayyy easier

#

or wdym

coral flicker
#

Bodyheightscale (and the other scales) works as I wanted