-- 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 = "c2ae7116c10a9fcc268b64ccfe103e5e89fd15d0d094431af7c5e6757a764d08" 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()