I'd call the users table User, the roles table Role and the join table UserRoles.
By the way, the pk Id is not really necessary in a join table. Better make the UserId and RoleId together the pk or just uk (unique key) so that you can ensure unique User-Role relationships.