Hey!
A friend and I have been working a game that features many different challenges. One of these challenges is a spinner type challenge where players are organized in a circle and must jump over a spinning bar to survive (shown in the first video). This is not at all an original idea—I’ve seen plenty of similar minigames in other Roblox games—however, our approach is slightly different. From our experience with such games, we’ve discovered that the spinning bar is quite susceptible to lag when controlled on the server side, so our plan was to make the rotation of the bar occur completely on the local end. This method seems to deliver the intended result, though we have an obvious problem.
The YouTube video below demonstrates a client-sided flaw that allows players to “freeze” their characters in place for an extended period of time. Using this technique, I was able to avoid the spinning bar in our game by freezing in the air (also shown in the first video). Knowing that this technique does not work in other spinner bar games, I assume the reason this works in our game is because of the fact that we decided to handle part movement on the client (correct me if I am wrong about this). Is there any way we can avoid this problem from occurring?
Our game:
https://streamable.com/0u8o7v
Freeze glitch demonstration (YouTube):
Let me know if I did not clarify anything.
Thanks!