RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that unfreezes my torso"
-- local script local player = game.Players.LocalPlayer local character = player.Character local humanoid = character:FindFirstChild("Humanoid") if humanoid then local torso = character:FindFirstChild("Torso") or character:FindFirstChild("UpperTorso") if torso then torso.Anchored = false end end