From cc9e5a90c0509180094eca6dab2ff000e9e42e8a Mon Sep 17 00:00:00 2001 From: Shay Date: Sun, 8 Feb 2026 20:42:36 +1100 Subject: [PATCH 1/3] Update RenderJob constants in offsets.hpp Replaced RenderJobToDataModel and RenderJobToFakeDataModel with new constants. --- offsets.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offsets.hpp b/offsets.hpp index 65a2791..2ad5232 100644 --- a/offsets.hpp +++ b/offsets.hpp @@ -126,8 +126,8 @@ namespace offsets { inline constexpr uintptr_t ProximityPromptHoldDuraction = 0x140; inline constexpr uintptr_t ProximityPromptMaxActivationDistance = 0x148; inline constexpr uintptr_t ProximityPromptMaxObjectText = 0xF0; - inline constexpr uintptr_t RenderJobToDataModel = 0x1B0; - inline constexpr uintptr_t RenderJobToFakeDataModel = 0x38; + inline constexpr uintptr_t RenderJobToDataModel1 = 0x1D8; // FakeDataModel + inline constexpr uintptr_t RenderJobToDataModel2 = 0x1C0; inline constexpr uintptr_t RenderJobToRenderView = 0x218; inline constexpr uintptr_t RequireBypass = 0x8F8; inline constexpr uintptr_t RigType = 0x1C8; From f3b001aa7468d94c56c25dee0b4ca269439f03df Mon Sep 17 00:00:00 2001 From: Shay Date: Sun, 8 Feb 2026 20:43:55 +1100 Subject: [PATCH 2/3] Update ByfronVersion and render job data models --- offsets.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/offsets.json b/offsets.json index fc3d1a0..c22efd0 100644 --- a/offsets.json +++ b/offsets.json @@ -1,6 +1,6 @@ { "RobloxVersion": "version-80c7b8e578f241ff", - "ByfronVersion": "???", + "ByfronVersion": "Hyperion7", "Adornee": "0xD0", "Anchored": "0x1AE", "AnchoredMask": "0x2", @@ -126,8 +126,8 @@ "ProximityPromptHoldDuraction": "0x140", "ProximityPromptMaxActivationDistance": "0x148", "ProximityPromptMaxObjectText": "0xF0", - "RenderJobToDataModel": "0x1B0", - "RenderJobToFakeDataModel": "0x38", + "RenderJobToDataModel1": "0x1D8", + "RenderJobToDataModel2": "0x1C0", "RenderJobToRenderView": "0x218", "RequireBypass": "0x8F8", "RigType": "0x1C8", From aff3a23c54daa5df9ee88e34a42c3dc4c6debf16 Mon Sep 17 00:00:00 2001 From: Shay Date: Sun, 8 Feb 2026 20:44:16 +1100 Subject: [PATCH 3/3] Update Roblox and Byfron version comments --- offsets.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offsets.hpp b/offsets.hpp index 2ad5232..b2491f3 100644 --- a/offsets.hpp +++ b/offsets.hpp @@ -1,5 +1,5 @@ -// Roblox Version: ??? -// Byfron Version: ??? +// Roblox Version: version-80c7b8e578f241ff +// Byfron Version: Hyperion7 namespace offsets { inline constexpr uintptr_t Adornee = 0xD0; inline constexpr uintptr_t Anchored = 0x1AE;