Server Entity Vehicle:VC_clearSeats()
concommand.Add("vehicle_clearseats", function()
local ent = player.GetAll()[1]:GetEyeTraceNoCursor().Entity
if IsValid(ent) then
ent:VC_clearSeats()
print("All players have been kicked out of the vehicle, too bad.")
else
print("Invalid entity.")
end
end)