Unlimited Coins Giver Script – Shutdown

Blox Fruits is an immensely popular game on the Roblox platform, boasting a vast user base. This action-adventure game revolves around a pirate theme, where players engage in combat against a variety of enemies and challenging bosses. Exploring islands and consuming different fruits are essential for advancing your character’s level.

What is Roblox Script?

Roblox Scripts typically refer to snippets of code that offer automation advantages within the game. Independent developers and scripters create these scripts, which are not officially endorsed by the Roblox platform. Nevertheless, you can still utilize these scripts through Roblox executors such as Arceus X, Hydrogen Executor, JJSploit, Fluxus executor, and others.

How to Use Roblox Script?

  1. Launch Roblox and join your desired game.
  2. Click the “Copy” button to duplicate the script code.
  3. Paste the script code into your preferred Roblox executor.
  4. Execute the script code and savor the enhanced experience.
--[[
	WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
-- Objects

local SlimeGui = Instance.new("ScreenGui")
local SlimesFrame = Instance.new("Frame")
local MoneyBox = Instance.new("TextBox")
local SetitBoi = Instance.new("TextButton")
local PlayerBox = Instance.new("TextBox")

-- Properties

SlimeGui.Name = "SlimeGui"
SlimeGui.Parent = game.CoreGui

SlimesFrame.Name = "SlimesFrame"
SlimesFrame.Parent = SlimeGui
SlimesFrame.BackgroundColor3 = Color3.new(0, 0, 0)
SlimesFrame.BackgroundTransparency = 0.5
SlimesFrame.Position = UDim2.new(0, 0, 0, 301)
SlimesFrame.Size = UDim2.new(0, 357, 0, 139)

MoneyBox.Name = "MoneyBox"
MoneyBox.Parent = SlimesFrame
MoneyBox.BackgroundColor3 = Color3.new(0, 0, 0)
MoneyBox.Position = UDim2.new(0, 3, 0, 20)
MoneyBox.Size = UDim2.new(0, 175, 0, 50)
MoneyBox.Font = Enum.Font.SourceSans
MoneyBox.FontSize = Enum.FontSize.Size14
MoneyBox.Text = "Any Value here"
MoneyBox.TextColor3 = Color3.new(0, 1, 1)
MoneyBox.TextSize = 14
MoneyBox.TextWrapped = true

SetitBoi.Name = "SetitBoi"
SetitBoi.Parent = SlimesFrame
SetitBoi.BackgroundColor3 = Color3.new(0, 0, 0)
SetitBoi.Position = UDim2.new(0, 53, 0, 94)
SetitBoi.Size = UDim2.new(0, 256, 0, 45)
SetitBoi.Font = Enum.Font.SourceSans
SetitBoi.FontSize = Enum.FontSize.Size14
SetitBoi.Text = "Give Cash"
SetitBoi.TextColor3 = Color3.new(0, 1, 1)
SetitBoi.TextSize = 14

PlayerBox.Name = "PlayerBox"
PlayerBox.Parent = SlimesFrame
PlayerBox.BackgroundColor3 = Color3.new(0, 0, 0)
PlayerBox.Position = UDim2.new(0, 197, 0, 22)
PlayerBox.Size = UDim2.new(0, 160, 0, 47)
PlayerBox.Font = Enum.Font.SourceSans
PlayerBox.FontSize = Enum.FontSize.Size14
PlayerBox.Text = "Any name here"
PlayerBox.TextColor3 = Color3.new(0, 1, 1)
PlayerBox.TextSize = 14

SetitBoi.MouseButton1Click:connect(function()
if game.Players[PlayerBox.Text] then
game.Workspace.DoShopPurchase:InvokeServer(game.Players[PlayerBox.Text].leaderstats.Coins, -tonumber(MoneyBox.Text),"skill3")
end
end)

 

Remember to employ a dummy account when injecting scripts. We cannot be held responsible for any potential harm caused to your Roblox account.

Description

Give more money just by typing the currencies you want. – ProjectScripter200 (in Roblox)