Blox Fruits is an immensely popular game on the Roblox platform, boasting a vast user base. Admin Gui Script This action-adventure game revolves around a pirate theme, where players enagage 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. Admin Gui Script 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, Blox Fruit Script and others.
How to Use Roblox Script?
- Launch Roblox and join your desired game.
- Click the “Copy” button to duplicate the script code.
- Paste the script code into your preferred Roblox executor.
- Execute the script code and savor the enhanced experience.
--[[
WARNING: Heads up! This script has not been verified by BloxFruitScript. Use at your own risk!
]]
local UIS = game:GetService("UserInputService")
local Players = game:GetService("Players")
local player = Players.LocalPlayer
-- GUI
local gui = Instance.new("ScreenGui")
gui.Name = "0vertaker"
gui.ResetOnSpawn = false
gui.Parent = game.CoreGui
local main = Instance.new("Frame", gui)
main.Size = UDim2.new(0, 220, 0, 320)
main.Position = UDim2.new(0.5, -110, 0.5, -125)
main.BackgroundColor3 = Color3.fromRGB(30,30,30)
main.BorderSizePixel = 0
main.Active = true
-- Title
local title = Instance.new("TextLabel", main)
title.Size = UDim2.new(1,0,0,35)
title.BackgroundColor3 = Color3.fromRGB(20,20,20)
title.Text = "Admin"
title.TextColor3 = Color3.new(1,1,1)
title.Font = Enum.Font.SourceSansBold
title.TextSize = 22
title.BorderSizePixel = 0
title.Active = true
-- 🔥 NEW DRAG SYSTEM (PC + MOBILE, BULLETPROOF)
do
local dragging = false
local dragStart
local startPos
local function update(input)
local delta = input.Position - dragStart
main.Position = UDim2.new(
startPos.X.Scale,
startPos.X.Offset + delta.X,
startPos.Y.Scale,
startPos.Y.Offset + delta.Y
)
end
title.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1
or input.UserInputType == Enum.UserInputType.Touch then
dragging = true
dragStart = input.Position
startPos = main.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
title.InputChanged:Connect(function(input)
if dragging and (
input.UserInputType == Enum.UserInputType.MouseMovement
or input.UserInputType == Enum.UserInputType.Touch
) then
update(input)
end
end)
end
-- Content frame
local content = Instance.new("Frame", main)
content.Size = UDim2.new(1,0,1,-35)
content.Position = UDim2.new(0,0,0,35)
content.BackgroundTransparency = 1
-- Layout
local layout = Instance.new("UIListLayout", content)
layout.Padding = UDim.new(0,6)
layout.HorizontalAlignment = Enum.HorizontalAlignment.Center
layout.VerticalAlignment = Enum.VerticalAlignment.Top
-- Button maker
local function NewButton(text, callback)
local b = Instance.new("TextButton", content)
b.Size = UDim2.new(1,-20,0,32)
b.BackgroundColor3 = Color3.fromRGB(45,45,45)
b.Text = text
b.TextColor3 = Color3.new(1,1,1)
b.Font = Enum.Font.SourceSans
b.TextSize = 18
b.BorderSizePixel = 0
b.AutoButtonColor = true
b.MouseButton1Click:Connect(callback)
end
--BUTTONS
NewButton("F3X", function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-z000rzkidd-F3X-GUI-Destructive-111569"))()
end)
NewButton("Untitled Admin", function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-un*led-admin-82103"))()
end)
NewButton("Fly", function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-HD-Admin-Fly-29744"))()
end)
NewButton("NA", function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Nameless-admin-v250-script-87765"))()
end)
NewButton("QuirkyCMD", function()
loadstring(game:HttpGet("https://gist.github.com/someunknowndude/38cecea5be9d75cb743eac8b1eaf6758/raw"))()
end)
NewButton("Local", function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-ExperiencSetting-51900"))()
end)
NewButton("ServerSide", function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-C00lclan-v2-74713"))()
end)


