Occasionally, when attempting to reference synced variables in other scripts when not the owner of that data, it will return the default value rather than the current value.
The current workaround for this is to save all synced data as separate local variables and reference those externally, and only use the synced variables in OnPreserialization, OnDeserialization, and OnPostSerialization.
This was an issue I first noticed way back in June 2021, but I was never able to consistently have it break until now.
In this example world, the Dealer script is attempting to reference the GameActive boolean synced variable from the Controller script in OnDeserialization, returning if false to ensure data is not ran when the table is not active. However, for everyone except the owner of the controller script, the GameActive variable always returns the default false value, rather than the current value.
To test, join the table with one user, and with the person in control, set the game type to manual mode and start a match. Provided debug logs in the code will show the GameActive state on every client.