Categories > Exploiting > Scripts >

[request] money simulator X script

Posts: 16

Threads: 6

Joined: Aug, 2021

Reputation: 0

Posted

Any script for this game https://web.roblox.com/games/6628835921/Money-simulator-X-Beta-V0-21-1?

  • 0

Posts: 3

Threads: 0

Joined: Oct, 2021

Reputation: 0

Replied

this is my first time publishing a script so please let me know if its awefull.

[code]

getgenv().autoTap = false
getgenv().autoSell = false
getgenv().autoBag = false
getgenv().autoPower = false
getgenv().autoRank = false
getgenv().autoTier = false

local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()

local w = library:CreateWindow("Money Simulator X"

local b = w:CreateFolder("Farming")

b:Toggle("Auto Get Money",function(bool)
    autoTap = bool
    if bool then
        aTap()
    end
end)

b:Toggle("Upgrade Power",function(bool)
    autoPower = bool
    if bool then
        aPower()
    end
end)

b:Toggle("Upgrade Bag",function(bool)
    autoBag = bool
    if bool then
        aBag()
    end
end)

b:Toggle("Fill Bag",function(bool)
    autoSell = bool
    if bool then
        aSell()
    end
end)

b:Toggle("Auto Buy Rank",function(bool)
    autoRank = bool
    if bool then
        aRank()
    end
end)

b:Toggle("Auto Buy Tier",function(bool)
    autoTier = bool
    if bool then
        aTier()
    end
end)

function aTap()
    spawn (function ()
        while autoTap do
            game:GetService("ReplicatedStorage").GetMoney:FireServer("DropOn")
            wait()
        end
    end)
end

function aSell()
    spawn (function ()
        while autoSell do
            game:GetService("ReplicatedStorage").FillMoney:FireServer()
            wait()
        end
    end)
end

function aPower()
    spawn (function ()
        while autoPower do
            game:GetService("ReplicatedStorage").UpgradePower:FireServer()
            wait()
        end
    end)
end

function aBag()
    spawn (function ()
        while autoBag do
            game:GetService("ReplicatedStorage").UpgradeBag:FireServer()
            wait()
        end
    end)
end

function aRank()
    spawn (function ()
        while autoRank do
            game:GetService("ReplicatedStorage").UpgradeRank:FireServer()
            wait()
        end
    end)
end

function aTier()
    spawn (function ()
        while autoTier do
            game:GetService("ReplicatedStorage").TierUp:FireServer()
            wait()
        end
    end)
end

b:DestroyGui()

-- GUI credits to -AikaV3rm Wally Ui v3 Remake(Revamped)
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )