for i,v in pairs(game:GetDescendants()) do pcall(function() if v:IsA("Script") then if string.find(v.Source, "RoSync Loader") then local code = "" local splitted = string.split(v.Source, "\n") for lineNum, line in pairs(splitted) do print(type(string.find(line, "Last synced"))) print("removinga") if string.find(line, "Last synced") then else code = code.."\n"..line end end v.Source = code print(code) end end end) end