-- Haze Loader v2.3 -- https://haze.wtf print("🌊 Haze Loader initialized...") _G.HAZE_VERSION = "mky1ubuh" if not game:IsLoaded() then game.Loaded:Wait() end local function fetchScript() local gameId = tostring(game.GameId) local version = _G.HAZE_VERSION local token = "4c596ef35c3ff62de3bbaee3a9ceb119f232dce714722a637d6816aad9e18ec4" local url = "https://haze.wtf/api/script/" .. version .. "/" .. gameId .. "?token=" .. token print("📡 Fetching script for game: " .. gameId) local response = game:HttpGet(url) loadstring(response)() end fetchScript()