--[[ script was made by skondoooo92 discord https://discord.gg/4THYgrRQd3 site xeonhub.netlify.app showcase: https://youtu.be/mYLWGdHTcV8 ]]-- local url = "https://raw.githubusercontent.com/ProphecySkondo/Misc/refs/heads/main/obfuscated.lua" local success, result = pcall(function() return game:HttpGetAsync(url) end) if success and result then local func, err = loadstring(result) if func then pcall(func) else warn("Failed to compile script:", err) end else warn("Failed to fetch script:", result) end