0% found this document useful (0 votes)
40 views3 pages

FlashHub COMPLETO

Flash Hub v1 is a Roblox script designed for automating gameplay features such as auto farming, boss farming, and teleportation. It includes a user interface with various options for farming modes, weapon selection, and speed adjustments. The script also allows players to set spawn points and consume fruits from their backpack.

Uploaded by

enzoramos1020
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)
40 views3 pages

FlashHub COMPLETO

Flash Hub v1 is a Roblox script designed for automating gameplay features such as auto farming, boss farming, and teleportation. It includes a user interface with various options for farming modes, weapon selection, and speed adjustments. The script also allows players to set spawn points and consume fruits from their backpack.

Uploaded by

enzoramos1020
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
You are on page 1/ 3

-- FLASH HUB v1

-- Credits by iaeking (my discord)


-- Flash Hub Discord: https://discord.gg/fN7BmcNb

repeat wait() until game:IsLoaded()

local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:Connect(function()
vu:Button2Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame)
end)

-- Load UI Library
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/
Kavo-UI-Library/main/source.lua"))()
local Window = library.CreateLib("Flash Hub", "Ocean")

-- Tabs
local Main = Window:NewTab("Auto Farm")
local Boss = Window:NewTab("Boss Farm")
local Misc = Window:NewTab("Misc")
local Teleport = Window:NewTab("Teleport")
local Fruits = Window:NewTab("Fruits")
local Settings = Window:NewTab("Settings")

-- Sections
local MainSection = Main:NewSection("Auto Farm Options")
local BossSection = Boss:NewSection("Boss Farm Options")
local MiscSection = Misc:NewSection("Miscellaneous")
local TeleportSection = Teleport:NewSection("Island Teleports")
local FruitsSection = Fruits:NewSection("Fruit Actions")
local SettingsSection = Settings:NewSection("Hub Settings")

-- Variables
_G.AutoFarm = false
_G.AutoBoss = false
_G.FastMode = false
_G.SafeMode = true
_G.SelectedWeapon = "Combat"

-- Auto Farm Section


MainSection:NewToggle("Auto Farm Level", "Farm based on your level", function(v)
_G.AutoFarm = v
end)

MainSection:NewToggle("Fast Mode", "Farm faster but riskier", function(v)


_G.FastMode = v
_G.SafeMode = not v
end)

MainSection:NewToggle("Safe Mode", "Farm safer but slower", function(v)


_G.SafeMode = v
_G.FastMode = not v
end)

MainSection:NewDropdown("Select Weapon", "Choose your weapon", {"Combat", "Katana",


"Cutlass", "Iron Mace", "Slingshot"}, function(selected)
_G.SelectedWeapon = selected
end)

-- Boss Farm Section


BossSection:NewToggle("Auto Farm Boss", "Auto kill all bosses", function(v)
_G.AutoBoss = v
end)

-- Misc Section
MiscSection:NewButton("Set Spawn", "Set your spawn point", function()

game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
end)

MiscSection:NewButton("WalkSpeed 150", "Increase speed", function()


game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
end)

MiscSection:NewButton("JumpPower 150", "Increase jump", function()


game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
end)

-- Teleports
TeleportSection:NewButton("Starter Island", "Teleport to Starter Island",
function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1058,
16, 1547)
end)

TeleportSection:NewButton("Jungle", "Teleport to Jungle Island", function()


game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1611,
36, 146)
end)

-- Fruits
FruitsSection:NewButton("Eat Fruit", "Eat fruit from backpack", function()
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if string.find(v.Name, "Fruit") then
v.Parent = game.Players.LocalPlayer.Character
wait(0.1)
v:Activate()
end
end
end)

-- Settings
SettingsSection:NewButton("Minimize Menu", "Hide Menu", function()
library:ToggleUI()
game.StarterGui:SetCore("SendNotification", {
Title = "Flash Hub",
Text = "Press K to reopen Menu!",
Duration = 5
})
end)

local UIS = game:GetService("UserInputService")


UIS.InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.K then
library:ToggleUI()
end
end)

-- GetQuest(), AutoFarm e AutoBoss Systems aqui:


loadstring(game:HttpGet("LINK_DO_SEU_GETQUEST_COMPLETO_E_AUTOFARM_AQUI"))()

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy