Home » Our Blog » Scripts » 4 Top Scripts for Like or Pass – Infinite Cash, GUI Control & More!

4 Top Scripts for Like or Pass – Infinite Cash, GUI Control & More!

Photo of author
Published by

Like or Pass is a fun social Roblox game where you rate avatars, build your cash, and enjoy the vote results. But if you want to skip the slow grind and get rich fast, these simple scripts can help you earn infinite cash, control actions through buttons, and automate rewards with ease. Whether you’re looking to automate everything or just want a simple money boost, the scripts below have you covered.

01. GUI Reward Script – Button-Based Reward Spammer

This script gives you a clean interface with Start and Stop buttons. It lets you control when the reward spam begins and ends. It also comes with a toggle button to open or close the interface. Best part? You can adjust the cooldown speed too!

FeatureDescription
GUI ButtonsStart/Stop buttons with a toggle window
Reward SpammerAutomatically spams reward events
Editable CooldownYou can customize the timing
Easy to UseGreat for both beginners and advanced
local player = game.Players.LocalPlayer
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local GiveReward = ReplicatedStorage.RewardEvents.GiveReward

local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
local frame = Instance.new("Frame", screenGui)
frame.Size = UDim2.new(0, 200, 0, 100)
frame.Position = UDim2.new(0.5, -100, 0.5, -50)
frame.BackgroundColor3 = Color3.new(1, 1, 1)
frame.Active = true
frame.Draggable = true

local startButton = Instance.new("TextButton", frame)
startButton.Size = UDim2.new(1, 0, 0.5, 0)
startButton.Text = "Start"
startButton.BackgroundColor3 = Color3.new(0, 1, 0)

local stopButton = Instance.new("TextButton", frame)
stopButton.Size = UDim2.new(1, 0, 0.5, 0)
stopButton.Position = UDim2.new(0, 0, 0.5, 0)
stopButton.Text = "Stop"
stopButton.BackgroundColor3 = Color3.new(1, 0, 0)

local toggleButton = Instance.new("TextButton", screenGui)
toggleButton.Size = UDim2.new(0, 100, 0, 50)
toggleButton.Position = UDim2.new(0, 10, 0, 10)
toggleButton.Text = "Open"
toggleButton.BackgroundColor3 = Color3.new(0, 0, 1)

local isRunning = false
local isOpen = true

local function giveRewards()
    while isRunning do
        for i = 9, 1, -1 do
            if not isRunning then return end
            local success, err = pcall(function()
                GiveReward:FireServer(i)
            end)
            if not success then
                warn("Error giving reward: " .. err)
            end
            wait(0.01)
        end
    end
end

02. Key System Script – Infinite Money GUI

This script uses a key system but rewards you with infinite money once activated. It opens a GUI where you can enter your desired amount of cash and instantly get it.

See also  6 Top Taxi Boss Roblox Scripts
FeatureDescription
Infinite MoneyGives you unlimited cash
GUI InterfaceSimple textbox to enter cash amount
Key RequiredNeeds a key from the website to run
loadstring(game:HttpGet("https://gist.githubusercontent.com/Raiden84200/66d971a15cbe970c2b835657ec813ce3/raw/af7acce33de4cdddb194a49d2039c38dc513df4a/gistfile1.txt"))()

03. Wizard Script – Manual Infinite Money Function

This script lets you manually enter how much money you want. Once entered, it sends the cash reward using the PurchaseTroll server event. It’s direct, simple, and powerful.

FeatureDescription
Infinite CashAdds money based on your input
Manual ControlYou choose how much cash to give
Fast ExecutionAdds cash with one simple textbox input
local v0 = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))();
local v1 = v0:NewWindow("Inf Money - CHEATER.FUN");
local v2 = v1:NewSection("Money");
v2:CreateTextbox("Get Money", function(v3)
    local v5 = {[1]={ItemName="ShrinkPlayer",Key=v3,Cash=v3}};
    game:GetService("ReplicatedStorage").Events.PurchaseTroll:InvokeServer(unpack(v5));
end);

04. Pastebin Instant Money Script – Quick Reward Loop

A lightweight script that fires the reward event several times instantly, giving you fast cash with no GUI or extra steps.

FeatureDescription
Instant MoneyFires reward instantly 10 times
LightweightNo key, no GUI, just run it
Pastebin ScriptEasy to share and quick to load
for i = 1, 10 do game:GetService("ReplicatedStorage").RewardEvents.GiveReward:FireServer("5") end

How to Use These Scripts

  1. Open Roblox and launch the Like or Pass game.
  2. Use a Roblox executor such as Fluxus, Synapse X, or Arceus X.
  3. Copy one of the script codes above and paste it into the executor.
  4. Run the script and enjoy the features.
  5. If the script has a key system, follow the prompts to get your free key.

What Are the Benefits of Using These Scripts?

These scripts help you skip long grinding sessions by giving you cash automatically. Whether you want an interactive GUI or just a quick reward loop, these scripts are easy to use and flexible. Some come with full control panels, while others are simple one-line commands. You can adjust how fast rewards come in and even keep the GUI draggable and hidden when not in use.

See also  Hide And Seek Extreme Script

Using these tools not only saves time but also makes the game more enjoyable, especially if you want to stand out or just get cash faster than others.

Leave a Comment