-- Headless Simples FE - Remove apenas cabeça e rosto -- Seguro FE (local), não afeta outros jogadores local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local function removeHead() local head = character:FindFirstChild("Head") if head and head:IsA("BasePart") then -- Remove a cabeça e o rosto head.Transparency = 1 -- Esconde a cabeça if head:FindFirstChild("face") then head.face:Destroy() -- Remove o rosto end head.CanCollide = false end end removeHead() -- Aplica automaticamente caso o personagem respawne player.CharacterAdded:Connect(function(char) character = char removeHead() end)