
2.2k Views
adblock i guess
Universal Script 📌Uploaded by 3 weeks ago
Please login to perform these actions:
Description
so it removes ads inside roblox thats all i know
Comments
5

Offline
monchel2S1 3 weeks ago
adw
Offline
pasted 3 weeks ago
why do v.Cl*Name:lower():match("ad") ~= nil instead of if v.Cl*Name:lower() == "ad"
also this wont remove newly added ads for that you'd need to use game.Workspace:DescendantsAdded(function(v)
if v.Cl*Name:lower():match("ad") ~= nil then
pcall(function()
v:Destroy()
end)
end
end)
and correct me if im wrong but wouldnt most ads be in smth like coregui? instead of workspace?
Offline
TomatoVerified
3 weeks ago
@pasted v.Cl*Name:lower() == "ad" wont delete the cl*name "adgui" only things exactly cl*named "ad" also the way the ads work they dont dynamically spawn new instances just rotate ads in the same ones preplaced by the developer and all ads that you will see are gonna be in workspace since there are no ads on the hud made by roblox atleast.
Verified User

Offline
ban_others 5 days ago
This is bound to break so many games. If a roleplay game has roles, cl*es, or *ets containing 'ad' (like '*istant Director' abbreviated as 'AD', or even standard engine cl*es), it's going to get instantly deleted. Checking for 'ad' so loosely in the Cl*Name is a recipe for disaster.
ban_othersThis is bound to break so many games. If a rolepla...
Offline
TomatoVerified
5 days ago
@ban_others yeah probably
Verified User
