What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Universal Disable Robux V1

Version / Update: v1.0.0
Download / Script Link
local marketplaceservice, startergui = game:GetService("MarketplaceService"), game:GetService("StarterGui")
if identifyexecutor and identifyexecutor():find("Delta") then
task.spawn(pcall, startergui.SetCore, startergui, "SendNotification", {
Title = "Built-In Feature Detected",
Text = "Please Enable 'Disable Robux' In Delta Settings",
Duration = 15
})
if script then script:Destroy() end
return
end
task.spawn(pcall, startergui.SetCore, startergui, "SendNotification", {
Title = "How To Disable The Script",
Text = "Rejoin If You Didnt Add The Script In Auto-Execute Folder",
Duration = 10,
Button1 = "Understood."
})
local blockedmethods = {
["PromptPurchase"] = true,
["PromptProductPurchase"] = true,
["PromptGamePassPurchase"] = true,
["PromptBundlePurchase"] = true,
["PromptNativePurchase"] = true,
["PromptThirdPartyPurchase"] = true,
["PromptSubscriptionPurchase"] = true,
["PromptPremiumPurchase"] = true
}
local function notify(method)
task.spawn(pcall, startergui.SetCore, startergui, "SendNotification", {
Title = "Purchase Detected",
Text = method .. " Blocked",
Duration = 5
})
end
local oldnamecall
oldnamecall = hookmetamethod(game, "__namecall", newcclosure(function(self, ...)
local method = getnamecallmethod()
if rawequal(self, marketplaceservice) and blockedmethods[method] then
notify(method)
return
end
return oldnamecall(self, ...)
end))
local oldindex
oldindex = hookmetamethod(game, "__index", newcclosure(function(self, key)
if rawequal(self, marketplaceservice) and blockedmethods[key] then
notify(key)
return newcclosure(function() return end)
end
return oldindex(self, key)
end))
[ View More ]
6a52e024-2ac2-445e-b519-b2a6090fda3c.webp


Features: Hooking, Bypass-Proof, All Executors, Detect Delta X Feature, Supports Mobile And PC.
 
Back
Top