PhysicsService Errors?

Hello, i’ve started encountering a bunch of errors regarding PhysicsServices, that i did not receive until 2 days ago, i didn’t think much of it thinking it was just roblox api, but they persisted. this is what i’m getting in the output

image
image

Instead of CreateCollisionGroup use RegisterCollision group

Looks like you already created this Collision group and you don’t need to create already existing group.

It appears that you’re encountering errors related to the PhysicsService in your Roblox project. A common cause for such errors is attempting to create a collision group that already exists. The CreateCollisionGroup method has been deprecated; instead, you should use RegisterCollisionGroup. If the collision group you’re trying to create already exists, there’s no need to register it again. You can check if a collision group is registered using the IsCollisionGroupRegistered method. For more detailed information, you can refer to the official Roblox documentation on PhysicsService. PhysicsService