Help with Ghost Replay

Hey guys so im back and i need help with this game
so my game is a speedrunning parkour game and i wanted to add ghost replay to it, but turns out its really hard so if you guys could help then thatd be nice

thanks

Your code of recording the player for ghost playback is in a forever block.
Something to know about forever blocks is that they only begin running AFTER the code in the on start block has finished running.
Because the while loop in the on start block never ends, the code in general never ends and the forever code never starts.

To fix this you can use the timer extension and put the while loop in a “separately do” block.

1 Like