Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Universal Disable Robux V1 - Universal Script | Free Roblox Script

Universal Disable Robux V1

Universal 2 views just now
Universal Disable Robux V1 - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: aabbaaii13

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

60 Lines 2,181 Bytes
--[[rscripts:analytics:start]]
-- Script analytics (enabled by the creator on rscripts.net).
-- Runs in its own thread and cannot affect the script below.
task.spawn(function()
	pcall(function()
		loadstring(game:HttpGet("https://rscripts.net/api/telemetry/client.lua?s=69510d3f5f6a913b1f592e6a"))()
	end)
end)
--[[rscripts:analytics:end]]

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))

Comments

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the Universal game.

This script may require a payment or subscription. Please check the script's description for more details.

Yes, this script has a key system. You may need to complete a task or join a Discord server to get a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/universal-disable-robux-v1/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other