RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"script a tool that makes the player shrink"
-- local script local tool = script.Parent local player = game.Players.LocalPlayer local function shrinkPlayer() local character = player.Character local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.BodyHeightScale.Value = 0.5 humanoid.BodyWidthScale.Value = 0.5 humanoid.BodyDepthScale.Value = 0.5 end end tool.Activated:Connect(shrinkPlayer)