You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I used Phantom’s AI Version 2 Script and it doenst work
What is the issue? Include screenshots / videos if possible!
it says Network OwnerShip API cannot be called in Anchored parts or parts welded to an anchored parts
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
i deleted WeldConstraint in other parts
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.
and what are these??
GetCollisionGroups is deprecated, please use GetRegisteredCollisionGroups instead. More info: Updates to Collision Groups
CreateCollisionGroup is deprecated, please use RegisterCollisionGroup instead. More info: Updates to Collision Groups
SetPartCollisionGroup is deprecated, please use BasePart.CollisionGroup instead. More info: Updates to Collision Groups
If you’re getting that error in Roblox Studio, some code in your game is using the functions GetCollisionGroups, CreateCollisionGroup or SetPartCollisionGroup. The way to fix these errors is to rename them:
These aren’t very good answers, nor are they very helpful to what the OP is asking, I’ll try to provide more relevant info:
This means:
One of your Items is Anchored
An Item is Welded to the Anchored Instance
This doesn’t mean that Network is disabled, it means that there is something preventing you from applying it, Network Ownership works by assigning an owner to someone or something so it can calculate and Simulate Physics, It is automatically assigned to a Player by the Server, but you can change this by using the function: SetNetworkOwner which applies Ownership to an Instance and not just a Player.
If the Instance is Anchored, Network Ownership wont work as there is no Physics being applied for the Instance under those conditions, so if you unanchor it, it will allow the Server to Simulate Physics with the Instance.
These are not errors and I’m not sure where you heard that from, these are warnings, the warnings are to indicate that the function is Deprecated, which basically means that the following is discontinued, or obsolete compared to other methods. It is generally recommended that you avoid these methods as basically anytime, they could break due to their deprecation
As you already said,
They should be Replaced with the Following: