I unanchored a part and for some reason it doesn’t fall. It seems to only fall when a player gets close to it or something touches it. There are no scripts in my game so I don’t know what could be doing this.
As you can see in the video, the part is unanchored but doesn’t fall only until a few seconds
I have tried restarting my computer and roblox studio and also changed games but still the same thing happened.
Thanks
It is a script but I commented everything in the script. The script was originally used to check if a part touched it and then it would activate a RemoteEvent to unAnchor the part.
This is because NetworkOwnership. You changed the part to be unanchored on the client, so the physics aren’t applied until the NetworkOwnership is passed onto the client.
If you change the properties on the server, it should work fine. If you don’t know how to do this, click the “Current: Client” button on the Test tab, and then change the properties like normal.
so how would I make a script that runs for the client (localscript) fall for this part. This problem originated when I made a script to trigger a remote event if the part was touched, and then the localscript would unanchor the part only for the person that touched it. But the unAnchored part would fall and then stop falling. How would I make that?