local scriptURL = "https://raw.githubusercontent.com/IdkhubXApelhub/Steel-n-diesel-bypass/refs/heads/main/DieselnSteel" local actors = getactors() if #actors > 0 then -- This part runs your link inside an Actor run_on_actor(actors[1], [[ local url = ... task.spawn(function() loadstring(game:HttpGet(url))() end) ]], scriptURL) print("Executing inside Actor thread.") else -- Fallback if no actors exist, it just runs the link normally loadstring(game:HttpGet(scriptURL))() print("Executing on Main thread (No actors found).") end