
2.7k Views
134 Executions
Description
so it removes ads inside roblox thats all i know

so it removes ads inside roblox thats all i know

Universal Script 📌

Universal Script 📌

Universal Script 📌

Universal Script 📌

Script hub

Universal Script 📌

Universal Script 📌

Universal Script 📌
@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.
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_others yeah probably
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?
adw