Sorry but you didnât explain this very well and your video just shows 2 players falling.
What are the stands supposed to do? You say you want players to go through them, but then you mention something about making players not collide with each other and then you mention something about causing players to fly on their own standâŚ
If you want an Anchored single Part (which is what I assume your âstandâ is) to let players go through it then yes, make it CanCollide off in the Partâs Properties menu.
If you put a Free Model script in the stand for it to do something else then there may be something in that script that changes it back to CanCollide on.
Humanoids require and therefore force CanCollide = true against the HumanoidRootPart, Torso and Head because of the internal work it does in controlling how, for example, the Humanoid stays on top of a surface. Do not try to hack them off, use Collision Filtering.
Assuming you donât want âStandsâ colliding with anything, then all BasePart descendants of âStandâ models would be placed in their own separate collision group that would not collide either with each other. You may also need to make a separate collision group for player characters and have âStandâ and player character groups not collide with each other. You can play around and see what works.
Just setting CanCollide wonât work. You require collision groups here.
Ah, so you were not trying to make the stands CanCollide off, you were for some reason trying to make the playerâs CanCollide off.
Why not leave the players alone and just make the stand CanCollide off? Way less messy and sure to work.
Assuming that âStandsâ use Humanoids, CanCollide wonât work here because the Humanoid internally forces character parts to have a certain collision value. Hacking it off is not a proper solution either. Collision groups arenât messy and are the only way to do this natively.
I just wanted an explanation. He never explained what the stands were, or if they had Humanoids in them.
If they have Humanoids in them then why? Is it just to have the name of the stand displayed above it? If so then get rid of the Humanoid and use a GUI.
I just like answers and he never really explained what the heck heâs doing here.
If you have not watched JoJoâs Bizarre Adventure before, you probably should if you want a proper explaination about stands, and more things about it.
Yeah, thereâs a reason why I put âassumingâ in my post and never actually stated it out like it was fact, because I didnât know that for sure. Collision groups are the only solution for Humanoids, CanCollide would work with non-Humanoid assemblies.
I donât think even with the âclarificationâ (is it?) of what âStandsâ are, necessarily itâs that I or OP arenât explaining whatâs going on. Characters can still be constructed with or without Humanoids. Therefore, making the assumption that OP is using Humanoids in their model, collision groups resolve the issue.
Assumption was based off of the fact that their model had collisions forced to a certain value some posts up. I think thereâs sufficient information otherwise to outline the circumstances.