local getgenv = getgenv or get_genv or function() return _G end if not decompile then warn("Error: Your Executor Doesn't Support function decompile") return end if not getgenv().Wevorn_Old_Decompile then getgenv().Wevorn_Old_Decompile = getgenv().decompile end local sus1, data1, sus2, data2, sus3, data3, sus4, data4= nil, nil, nil, nil, nil, nil getgenv().decompile = function(script) if not script then warn("Error: Invalid Argument #1 In Function decompile") return end if script:IsA("CoreScript") then local Name = script.Name if string.find(Name, "CoreScripts/") then Name = Name:gsub("^CoreScripts/", "") end if script.Name == "StarterScript" then return "\n-- Credits: Roblox Client Tracker\n"..game:HttpGet("https://raw.githubusercontent.com/MaximumADHD/Roblox-Client-Tracker/refs/heads/roblox/scripts/CoreScripts/StarterScript.lua") end sus1, data1, sus2, data2, sus3, data3, sus4, data4 = nil, nil, nil, nil, nil, nil, nil, nil sus1, data1 = pcall(function() return "\n-- Credits: Roblox Client Tracker\n"..game:HttpGet("https://raw.githubusercontent.com/MaximumADHD/Roblox-Client-Tracker/refs/heads/roblox/scripts/CoreScripts/CoreScripts/"..Name.. ".lua") end) if not sus1 then sus2, data2 = pcall(function() return "\n-- Credits: Roblox Client Tracker\n"..game:HttpGet("https://raw.githubusercontent.com/MaximumADHD/Roblox-Client-Tracker/refs/heads/roblox/scripts/CoreScripts/ServerCoreScripts/"..Name.. ".lua") end) else return data1 end if not sus2 then sus3, data3 = pcall(function() return "\n-- Credits: Roblox Client Tracker\n"..game:HttpGet("https://raw.githubusercontent.com/MaximumADHD/Roblox-Client-Tracker/refs/heads/roblox/scripts/CoreScripts/"..Name.. ".lua") end) else return data2 end if not sus3 then sus4, data4 = pcall(function() return "\n-- Credits: Roblox Client Tracker\n"..game:HttpGet("https://raw.githubusercontent.com/MaximumADHD/Roblox-Client-Tracker/refs/heads/roblox/scripts/CoreScripts/"..Name.. ".lua") end) else return data3 end if not sus4 then return "\nFailed To Decompile CoreScript\n" end else return getgenv().Wevorn_Old_Decompile(script) end end