# my currently installed mods okay so this is as of march 1st 2026, i will not be updating this. Notes: - FPSTags - private mod i created, won't give any support at all. might get flagged by anti-cheat, use at own risk. not planning on releasing this mod. - if u wanna see how it works, it literally goes thru every rig every frame and updates their name to include their fps... ~~i included the main.cs in this directory~~ scratch that, ill attach the actual vrrig part to the bottom of this file - you'll probably need to update the rest yourself lol as promised above ```csharp public void Update() { if (GorillaParent.instance?.vrrigs == null) return; foreach (VRRig vrrig in GorillaParent.instance.vrrigs) { if (vrrig.playerText1 != null) vrrig.playerText1.text = vrrig.playerNameVisible + $"\nFPS: {vrrig.fps}"; } } ```