Home » Roblox Scripts » 5 Like or Pass Scripts for Infinite Money

5 Like or Pass Scripts for Infinite Money

Photo of author
Published on

If you are looking for the best scripts to enhance your Like or Pass game, you’re in the right place. These scripts will help you get infinite money, auto-like farming, and even troll players effortlessly. Below, you’ll find the most powerful scripts available, along with their features and codes.

01 Infinite Money & AutoFarm – Like or Pass

This script provides unlimited money, auto-farm for Super Likes, and auto-farm money.

FeatureDescription
Infinite MoneyGet unlimited in-game cash instantly.
AutoFarm LikesAutomatically farm Super Likes.
AutoFarm MoneyKeep earning money passively.
 game:GetService("ReplicatedStorage").Events.PurchaseTroll:InvokeServer({["ItemName"] = "0/10",["Key"] = "x11",["Cash"] = -999999999999999999})

while true do
    game:GetService("ReplicatedStorage").RewardEvents.GiveReward:FireServer("9")
    wait(0.01)
end

02 Infinite Money OP – Like or Pass

This script allows you to join a Discord server for more OP scripts while providing infinite money.

FeatureDescription
Infinite MoneyGain unlimited in-game currency.
Discord LinkGet access to more powerful scripts.
local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local JoinButton = Instance.new("TextButton")
local LinkBox = Instance.new("TextBox")
local discordLink = "https://discord.gg/XJuhDdgfcD"  

ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ResetOnSpawn = false

Frame.Parent = ScreenGui
Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
Frame.Size = UDim2.new(0, 350, 0, 200)
Frame.Position = UDim2.new(0.5, -175, 0.5, -100)
Frame.BorderSizePixel = 0
Frame.BackgroundTransparency = 0.1
Frame.ClipsDescendants = true
Frame.AnchorPoint = Vector2.new(0.5, 0.5)
Frame.Active = true
Frame.Draggable = true  

TextLabel.Parent = Frame
TextLabel.Text = "Join our Discord server for more OP scripts!"
TextLabel.Size = UDim2.new(1, 0, 0.3, 0)
TextLabel.TextColor3 = Color3.new(1, 1, 1)
TextLabel.BackgroundTransparency = 1
TextLabel.Font = Enum.Font.GothamBold
TextLabel.TextSize = 16
TextLabel.Position = UDim2.new(0, 0, 0.1, 0)

LinkBox.Parent = Frame
LinkBox.Text = discordLink
LinkBox.Size = UDim2.new(0.8, 0, 0.2, 0)
LinkBox.Position = UDim2.new(0.1, 0, 0.45, 0)
LinkBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
LinkBox.TextColor3 = Color3.new(1, 1, 1)
LinkBox.Font = Enum.Font.Gotham
LinkBox.TextSize = 14
LinkBox.ClearTextOnFocus = false
LinkBox.TextEditable = false 

JoinButton.Parent = Frame
JoinButton.Text = "Join for more OP scripts!!"
JoinButton.Size = UDim2.new(0.8, 0, 0.2, 0)
JoinButton.Position = UDim2.new(0.1, 0, 0.7, 0)
JoinButton.BackgroundColor3 = Color3.fromRGB(72, 104, 255)
JoinButton.TextColor3 = Color3.new(1, 1, 1)
JoinButton.Font = Enum.Font.Gotham
JoinButton.TextSize = 14
JoinButton.BorderSizePixel = 0
JoinButton.AutoButtonColor = true

JoinButton.MouseEnter:Connect(function()
    JoinButton.BackgroundColor3 = Color3.fromRGB(62, 94, 235)
end)

JoinButton.MouseLeave:Connect(function()
    JoinButton.BackgroundColor3 = Color3.fromRGB(72, 104, 255)
end)

JoinButton.MouseButton1Click:Connect(function()
    TextLabel.Text = "Copy the link from the box above to join!"
    JoinButton.Text = "Link Ready to Copy"

    wait(2)  

loadstring(game:HttpGet('https://gist.githubusercontent.com/Raiden84200/b58404842d12f00793528777d2cbae3f/raw/96dfc7a3ed20cc6a6504a6589118bdede00ddbc4/lua'))()

    wait(10)
    ScreenGui:Destroy()
end)

03 Super Like AutoFarm – Like or Pass

This script automates Super Likes, infinite money, and trolling features.

FeatureDescription
Infinite MoneyKeep earning money automatically.
Auto LikeAutomates the liking process.
Troll PlayersAnnoy other players for fun.
loadstring(game:HttpGet('https://www.xenonhub.xyz/loader.lua'))()

04 Cooldown Money Script – Like or Pass

This script includes a cooldown feature, allowing you to edit settings for money rewards.

FeatureDescription
Custom CooldownAdjust the speed of money rewards.
Infinite MoneyEarn unlimited cash.
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) -- Increased size
toggleButton.Position = UDim2.new(0, 10, 0, 10)
toggleButton.Text = "Open"
toggleButton.BackgroundColor3 = Color3.new(0, 0, 1)

local isRunning = false
local isOpen = true

-- Function to give rewards quickly
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


startButton.MouseButton1Click:Connect(function()
    if isRunning then return end
    isRunning = true
    startButton.Visible = false
    stopButton.Visible = true
    giveRewards() -- Start giving rewards
end)

-- Stop button functionality
stopButton.MouseButton1Click:Connect(function()
    isRunning = false
    startButton.Visible = true
    stopButton.Visible = false
end)

-- Toggle button functionality
toggleButton.MouseButton1Click:Connect(function()
    isOpen = not isOpen
    frame.Visible = isOpen
    toggleButton.Text = isOpen and "Close" or "Open"
end)


stopButton.Visible = false
frame.Visible = true

05 Clown Chaos – Like or Pass

This script makes every player in the game a clown while flooding the chat, ruining the game for others.

FeatureDescription
Spam ChatFills chat with spam messages.
Clown EffectTurns all players into clowns.
Block ChatsPrevents others from communicating.
loadstring(game:HttpGet("https://raw.githubusercontent.com/cnzins1/scripts/refs/heads/main/ruingameLIKEORPASS",true))()

How to Use the Script

  1. Open Roblox and launch Like or Pass.
  2. Use a script executor such as Synapse X or Krnl.
  3. Copy and paste the desired script into the executor.
  4. Execute the script and enjoy the benefits!

What Are the Benefits of Using These Scripts?

Using these scripts gives you a major advantage in the game. You can farm infinite money and Super Likes automatically, making it easier to progress. The troll scripts allow you to have fun with other players, creating hilarious in-game moments. Additionally, the cooldown editing script gives you control over reward speed, helping you optimize your gameplay.

Leave a Comment