Mr_3242

Universal Badass experiences infinite money

May 21st, 2026 (edited)
49
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.54 KB | Gaming | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4.     Name = "Badass Hub",
  5.     LoadingTitle = "Badass Hub",
  6.     LoadingSubtitle = "Mr_3242",
  7.     ConfigurationSaving = { Enabled = false }
  8. })
  9.  
  10. local Tab = Window:CreateTab("Badass Experience", 4483362458)
  11.  
  12. local Players = game:GetService("Players")
  13. local LocalPlayer = Players.LocalPlayer
  14. local MarketplaceService = game:GetService("MarketplaceService")
  15.  
  16.  
  17. local function u8()
  18.     local v2 = MarketplaceService:GetDeveloperProductsAsync():GetCurrentPage()
  19.     local v6 = {}
  20.  
  21.     local v3, v4, v5 = pairs(v2)
  22.  
  23.     while true do
  24.         local v7
  25.         v5, v7 = v3(v4, v5)
  26.  
  27.         if v5 == nil then
  28.             break
  29.         end
  30.  
  31.         if string.find(v7.Name, "Tier 3") then
  32.             table.insert(v6, v7.ProductId)
  33.         end
  34.     end
  35.  
  36.     return v6
  37. end
  38.  
  39. ------------------------------------------------
  40. -- BUTTON: Delete Effects
  41. ------------------------------------------------
  42. Tab:CreateButton({
  43.     Name = "Delete Effects",
  44.     Callback = function()
  45.         local gui = LocalPlayer:FindFirstChild("PlayerGui")
  46.         if gui then
  47.             local fx = gui:FindFirstChild("Effects")
  48.             if fx then
  49.                 fx.Enabled = false
  50.             end
  51.         end
  52.     end
  53. })
  54.  
  55. ------------------------------------------------
  56. -- TOGGLE: Infinite Money
  57. ------------------------------------------------
  58. local inf = false
  59.  
  60. Tab:CreateToggle({
  61.     Name = "Infinite Money",
  62.     CurrentValue = false,
  63.  
  64.     Callback = function(state)
  65.         inf = state
  66.  
  67.         task.spawn(function()
  68.             local v33 = u8()
  69.  
  70.             while inf do
  71.                 for _, productId in pairs(v33) do
  72.                     MarketplaceService:SignalPromptProductPurchaseFinished(
  73.                         LocalPlayer.UserId,
  74.                         productId,
  75.                         true
  76.                     )
  77.                 end
  78.                 task.wait()
  79.             end
  80.         end)
  81.     end
  82. })
  83.  
  84. ------------------------------------------------
  85. -- INPUT: Walkspeed
  86. ------------------------------------------------
  87. Tab:CreateInput({
  88.     Name = "Walkspeed",
  89.     PlaceholderText = "Enter speed",
  90.     RemoveTextAfterFocusLost = false,
  91.  
  92.     Callback = function(text)
  93.         local char = LocalPlayer.Character
  94.         local hum = char and char:FindFirstChildOfClass("Humanoid")
  95.  
  96.         local speed = tonumber(text)
  97.         if hum and speed then
  98.             hum.WalkSpeed = speed
  99.         end
  100.     end
  101. })
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment