FlashHub COMPLETO
FlashHub COMPLETO
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"
-- Misc Section
MiscSection:NewButton("Set Spawn", "Set your spawn point", function()
game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
end)
-- Teleports
TeleportSection:NewButton("Starter Island", "Teleport to Starter Island",
function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1058,
16, 1547)
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)