-- Load and execute the script from GitHub local success, result = pcall(function() return game:HttpGet("https://raw.githubusercontent.com/Waowzar/WowzersTetris/refs/heads/main/WowzersTetris.lua") end) if success then -- If request was successful, load and execute the script loadstring(result)() else -- if found any errors then print it warn("Failed to load script: " .. tostring(result)) end