0% found this document useful (0 votes)
3 views2 pages

Text File

The document outlines a script for a simple GUI hub in the game Blox Fruits, created using Lua. It includes functionalities for auto farming, auto attacking, and teleporting, along with a draggable user interface. The script handles player input and manages the state of the buttons to control these features.

Uploaded by

bomayyeuvietnam
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

Text File

The document outlines a script for a simple GUI hub in the game Blox Fruits, created using Lua. It includes functionalities for auto farming, auto attacking, and teleporting, along with a draggable user interface. The script handles player input and manages the state of the buttons to control these features.

Uploaded by

bomayyeuvietnam
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

-- Blox Fruits Simple Hub

-- by ChatGPT

local player = [Link]


local char = [Link] or [Link]:Wait()
local humanoid = char:WaitForChild("Humanoid")

-- UI
local ScreenGui = [Link]("ScreenGui", [Link])
local Frame = [Link]("Frame", ScreenGui)
[Link] = [Link](0, 250, 0, 200)
[Link] = [Link](0.05, 0, 0.3, 0)
Frame.BackgroundColor3 = [Link](30,30,30)

local Title = [Link]("TextLabel", Frame)


[Link] = [Link](1,0,0,30)
[Link] = "Mini Blox Fruits Hub"
Title.TextColor3 = [Link](1,1,1)
[Link] = 1

-- Buttons
local function createButton(name, y)
local btn = [Link]("TextButton", Frame)
[Link] = [Link](0.9,0,0,30)
[Link] = [Link](0.05,0,0,y)
[Link] = name
btn.BackgroundColor3 = [Link](50,50,50)
btn.TextColor3 = [Link](1,1,1)
return btn
end

local autoFarmBtn = createButton("Auto Farm", 40)


local autoAtkBtn = createButton("Auto Attack", 80)
local tpBtn = createButton("Teleport Island", 120)

-- Variables
local autofarm = false
local autoatk = false

-- Auto Attack
autoAtkBtn.MouseButton1Click:Connect(function()
autoatk = not autoatk
end)

spawn(function()
while wait(0.2) do
if autoatk then
pcall(function()
game:GetService("VirtualUser"):ClickButton1([Link]())
end)
end
end
end)

-- Auto Farm (simple)


autoFarmBtn.MouseButton1Click:Connect(function()
autofarm = not autofarm
end)
spawn(function()
while wait(1) do
if autofarm then
pcall(function()
for i,v in pairs([Link]:GetChildren()) do
if v:FindFirstChild("HumanoidRootPart") then
[Link] = [Link] *
[Link](0,0,3)
end
end
end)
end
end
end)

-- Teleport (basic)
tpBtn.MouseButton1Click:Connect(function()
[Link] = [Link](0, 50, 0)
end)

-- Drag UI
local UIS = game:GetService("UserInputService")
local dragging, dragInput, dragStart, startPos

[Link]:Connect(function(input)
if [Link] == [Link].MouseButton1 then
dragging = true
dragStart = [Link]
startPos = [Link]
end
end)

[Link]:Connect(function(input)
if [Link] == [Link] then
dragInput = input
end
end)

[Link]:Connect(function(input)
if input == dragInput and dragging then
local delta = [Link] - dragStart
[Link] = [Link]([Link], [Link] + delta.X,
[Link], [Link] + delta.Y)
end
end)

[Link]:Connect(function(input)
if [Link] == [Link].MouseButton1 then
dragging = false
end
end)

You might also like