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?
- 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 ScriptBlox. Use at your own risk! ]] -- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local main = Instance.new("ImageLabel") local FedoraAdmin = Instance.new("TextButton") local ChatLag = Instance.new("TextButton") local Energize = Instance.new("TextButton") local Nameless = Instance.new("TextButton") local TextLabel = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling main.Name = "main" main.Parent = ScreenGui main.BackgroundColor3 = Color3.fromRGB(255, 255, 255) main.BorderColor3 = Color3.fromRGB(0, 0, 0) main.BorderSizePixel = 0 main.Position = UDim2.new(0.461294413, 0, 0.152173907, 0) main.Size = UDim2.new(0, 421, 0, 355) main.Image = "http://www.roblox.com/asset/?id=18517014072" FedoraAdmin.Name = "Fedora Admin" FedoraAdmin.Parent = main FedoraAdmin.BackgroundColor3 = Color3.fromRGB(255, 255, 255) FedoraAdmin.BorderColor3 = Color3.fromRGB(0, 0, 0) FedoraAdmin.BorderSizePixel = 2 FedoraAdmin.Position = UDim2.new(0.042755343, 0, 0.245070428, 0) FedoraAdmin.Size = UDim2.new(0, 143, 0, 64) FedoraAdmin.Font = Enum.Font.SourceSans FedoraAdmin.Text = "Fedora Admin" FedoraAdmin.TextColor3 = Color3.fromRGB(0, 0, 0) FedoraAdmin.TextScaled = true FedoraAdmin.TextSize = 30.000 FedoraAdmin.TextWrapped = true FedoraAdmin.MouseButton1Down:connect(function() loadstring(game:HttpGet('https://raw.githubusercontent.com/alexx1212/fedoratoomutch/main/toomucth'))() end) ChatLag.Name = "Chat Lag" ChatLag.Parent = main ChatLag.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ChatLag.BorderColor3 = Color3.fromRGB(0, 0, 0) ChatLag.BorderSizePixel = 2 ChatLag.Position = UDim2.new(0.617577195, 0, 0.245070428, 0) ChatLag.Size = UDim2.new(0, 143, 0, 64) ChatLag.Font = Enum.Font.SourceSans ChatLag.Text = "Y00z Chat Lag" ChatLag.TextColor3 = Color3.fromRGB(0, 0, 0) ChatLag.TextScaled = true ChatLag.TextSize = 30.000 ChatLag.TextWrapped = true ChatLag.MouseButton1Down:connect(function() loadstring(game:HttpGet('https://pastebin.com/raw/AmxURsvM'))() end) Energize.Name = "Energize" Energize.Parent = main Energize.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Energize.BorderColor3 = Color3.fromRGB(0, 0, 0) Energize.BorderSizePixel = 2 Energize.Position = UDim2.new(0.042755343, 0, 0.656338036, 0) Energize.Size = UDim2.new(0, 143, 0, 64) Energize.Font = Enum.Font.SourceSans Energize.Text = "Energ*ze Gui" Energize.TextColor3 = Color3.fromRGB(0, 0, 0) Energize.TextScaled = true Energize.TextSize = 30.000 Energize.TextWrapped = true Energize.MouseButton1Down:connect(function() loadstring(game:HttpGet(('https://pastebin.com/raw/1p6xnBNf'),true))() end) Nameless.Name = "Nameless" Nameless.Parent = main Nameless.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Nameless.BorderColor3 = Color3.fromRGB(0, 0, 0) Nameless.BorderSizePixel = 2 Nameless.Position = UDim2.new(0.617577195, 0, 0.656338036, 0) Nameless.Size = UDim2.new(0, 143, 0, 64) Nameless.Font = Enum.Font.SourceSans Nameless.Text = "Nameless Admin" Nameless.TextColor3 = Color3.fromRGB(0, 0, 0) Nameless.TextScaled = true Nameless.TextSize = 30.000 Nameless.TextWrapped = true Nameless.MouseButton1Down:connect(function() loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Nameless-Admin-no-byfron-ui-11288"))() end) TextLabel.Parent = main TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.261282653, 0, 0.0225352105, 0) TextLabel.Size = UDim2.new(0, 200, 0, 50) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "4nn1 Troll Gui Remake" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextSize = 35.000 -- Scripts: local function HMITF_fake_script() -- main.LocalScript local script = Instance.new('LocalScript', main) local UserInputService = game:GetService("UserInputService") local gui = script.Parent local dragging local dragInput local dragStart local startPos local function update(input) local delta = input.Position - dragStart gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = gui.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) gui.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then update(input) end end) end coroutine.wrap(HMITF_fake_script)()
Description
4nn1 Troll Gui Remake by @uwulax Basically a script used by Y00zkidd. I saw peopel wanted the script in the comments and Y00zkidd said no so i just remade it xd. Btw Energize works only on mobile. Also for ScriptBlox Admins to know this script isnt a leak or anything its simply a remake and literally all of the scripts in the gui are public scripts. The gui is made by me.
Download Cricfy
Download Dooflix