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

Offline
monchel2S1 2 months ago
adw
Offline
pasted 2 months 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
2 months 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 1 month 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
1 month ago
@ban_others yeah probably
Verified User





