How do you display FPS in the game?
TimeDelta() returns the seconds elapsed per frame, so 1/TimeDelta() returns the frames elapsed per second
Try to set the string of a text object to:
ToString(round(1/TimeDelta()))
8 Likes