Button Bobux Simulator Script | AUTO QUESTION & MORE!

Created by Ezpi 

Features:

  • AUTO QUESTION
--// Settings \\--
local MessageDelay = {2, 5} -- between 2 and 5 seconds

--// Services \\--
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")

--// Variables \\--
local SayMessage = ReplicatedStorage:WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
local Leaderboards = Workspace:WaitForChild("Leaderboards")

--// Auto Questions \\--
ReplicatedStorage:WaitForChild("RemoteEvents"):WaitForChild("SendCustomMessage").OnClientEvent:Connect(function(a)
    warn(a)
    local Random = math.random(MessageDelay[1]*10, MessageDelay[2]*10)/10
    task.wait(Random)
    if string.find(a, "Question") then
        if string.find(a, "top 1 player") then
            a = string.split(a, "in the ")[2]
            a = string.split(a, " leaderboard")[1]
            local LB = a == "Donations" and "RobuxSpent" or a
            local List = Leaderboards["GlobalLB_" .. LB].GlobalLBGui.List
            while #List:GetChildren() < 30 do
                task.wait(0.1)
            end
            for _, V in next, List:GetChildren() do
                if V:IsA("Frame") and V.Rank.Text == "#1" then
                    SayMessage:FireServer(V.PlrName.Text, "All")
                    task.wait()
                    Players:Chat(V.PlrName.Text)
                    break
                end
            end
        elseif string.find(a, "= ?") then
            a = string.split(a, ">: ")[2]
            a = string.split(a, " =")[1]
            a = "return " .. a
            local Answer = loadstring(a)()
            SayMessage:FireServer(Answer, "All")
            task.wait()
            Players:Chat(Answer)
        end
    end
end)

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!