--PavelHub universal loader local Players = game:GetService("Players") local player = Players.LocalPlayer or Players.PlayerAdded:Wait() local kurdishGameIds = { [109983668079237] = true, [128762245270197] = true, [96342491571673] = true } local function loadScriptFrom(url) local success, result = pcall(function() loadstring(game:HttpGet(url, true))() end) if not success then warn("Failed to load script from:", url, result) end end if kurdishGameIds[game.PlaceId] then -- Kurdish version for specific games loadScriptFrom("https://raw.githubusercontent.com/PavelHub63/PavelHub_Kurdish/main/PavelHub_Kurdish.txt") else -- English protected version for all others loadScriptFrom("https://raw.githubusercontent.com/PavelHub63/PavelHub_English_Protect/main/Encrypted_PavelHub_English.txt") end