hook.Add("Initialize","cleanupragdolls",function() print("Client initalized") timer.Create( "removeRagdolls", 3, 0, function() for k,v in pairs(ents.GetAll()) do if(v:GetClass() == "class C_ClientRagdoll") then v:Remove() end end end) end)