So apparently this script doesn’t work it says the Humanoid is dead but It’s not it might be because the Humanoid Hasn’t fully loaded yet. How do i fix it?
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local hum = char:WaitForChild("Humanoid")
game.Workspace.Seat:Sit(char.Humanoid)
end)
end)