0% found this document useful (0 votes)
106 views4 pages

Allux Hub Script for Roblox

The document is a Lua script for a Roblox game that initializes a GUI for a tool called Allux Hub. It includes functionalities such as item duplication, gifting items to oneself, and activating tools in a loop. Additionally, it allows users to select and manage fish and tools from their inventory, with various interactive buttons and dropdowns for user engagement.

Uploaded by

foicealbrado
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)
106 views4 pages

Allux Hub Script for Roblox

The document is a Lua script for a Roblox game that initializes a GUI for a tool called Allux Hub. It includes functionalities such as item duplication, gifting items to oneself, and activating tools in a loop. Additionally, it allows users to select and manage fish and tools from their inventory, with various interactive buttons and dropdowns for user engagement.

Uploaded by

foicealbrado
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

-- die

if getgenv().allux then warn("Allux Hub: Already executed!") return end


getgenv().allux = true

if not game:IsLoaded() then


[Link]:Wait()
end

local Fluent =
loadstring(game:HttpGet("[Link]
download/[Link]", true))()

local ClickButton = [Link]("ScreenGui")


local MainFrame = [Link]("Frame")
local ImageLabel = [Link]("ImageLabel")
local TextButton = [Link]("TextButton")
local UICorner = [Link]("UICorner")
local UICorner_2 = [Link]("UICorner")

[Link] = "ClickButton"
[Link] = [Link]
[Link] = [Link]

[Link] = "MainFrame"
[Link] = ClickButton
[Link] = [Link](1, 0)
MainFrame.BackgroundColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](1, -60, 0, 10)
[Link] = [Link](0, 45, 0, 45)

[Link] = [Link](0, 10)


[Link] = MainFrame

UICorner_2.CornerRadius = [Link](0, 10)


UICorner_2.Parent = ImageLabel

[Link] = MainFrame
[Link] = [Link](0.5, 0.5)
ImageLabel.BackgroundColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.5, 0, 0.5, 0)
[Link] = [Link](0, 45, 0, 45)
[Link] = "rbxassetid://"

[Link] = MainFrame
TextButton.BackgroundColor3 = [Link](1, 1, 1)
[Link] = 1
[Link] = 0
[Link] = [Link](0, 0, 0, 0)
[Link] = [Link](0, 45, 0, 45)
[Link] = false
[Link] = [Link]
[Link] = "A"
TextButton.TextColor3 = [Link](1, 1, 1)
[Link] = 20

TextButton.MouseButton1Click:Connect(function()
game:GetService("VirtualInputManager"):SendKeyEvent(true, "Insert", false,
game)
game:GetService("VirtualInputManager"):SendKeyEvent(false, "Insert", false,
game)
end)

local Window = Fluent:CreateWindow({


Title = "Allux | " ..
game:GetService("MarketplaceService"):GetProductInfo(16732694052).Name,
SubTitle = "by mani ([Link]/allux)",
TabWidth = 180,
Size = [Link](525, 380),
Acrylic = false,
Theme = "Darker",
MinimizeKey = [Link]
})

local re = game:GetService("ReplicatedStorage")
local vr = game:GetService('VirtualUser')
local lp = [Link]

[Link](function()
game:GetService("Players").[Link]:connect(function()
pcall(function()
vr:Button2Down([Link](0,0),[Link])
[Link]()
vr:Button2Up([Link](0,0),[Link])
end)
end)
end)

local main_tab = {main = Window:AddTab({ Title = "Main", Icon = "home" })}

local gift = main_tab.main:AddSection("Gift")

gift:AddButton({
Title = "Gift You-Self",
Description = "",
Callback = function()
local tgt = [Link]

if tgt then
local equipped_tool = [Link]:FindFirstChildWhichIsA("Tool")

if equipped_tool and equipped_tool:FindFirstChild("offer") then


equipped_tool.offer:FireServer(tgt)
end
end
end
})

local main = main_tab.main:AddSection("Item")

local select_item = main:AddDropdown("select_item", {


Title = "Select Item",
Values = {"Coral Geode", "Bait Crate", "Common Crate", "Quality Bait Crate",
"Volcanic Geode", "Fish Barel", "Carbon Crate"},
Multi = false,
Default = "",
})
select_item:OnChanged(function(Value)
getgenv().select_item = Value
end)

main:AddButton({
Title = "Item Dupe",
Description = "",
Callback = function()
local back_pack = [Link]
local char = [Link] or [Link]:Wait()

local rod_name = [Link][[Link]].[Link]


local rod = back_pack:FindFirstChild(rod_name)

if rod then
[Link]:EquipTool(rod)
end

local selected = back_pack:FindFirstChild(getgenv().select_item)

if selected then
[Link] = char
end
end
})

local loop_activate = main:AddToggle("loop_activate", {Title = "Loop Activate",


Description = "", Default = false})

loop_activate:OnChanged(function(Value)
getgenv().loop_activate = Value

while getgenv().loop_activate do [Link]()


for _, tool in ipairs([Link]:GetChildren()) do
if tool:IsA("Tool") then
tool:Activate()
end
end
end
end)

local fish = main_tab.main:AddSection("Fish")

local equipped_fish = {}

local function get_equipped_fish()


equipped_fish = {}
for _, tool in ipairs([Link]:GetChildren()) do
if tool:IsA("Tool") then
[Link](equipped_fish, [Link])
end
end
end

local select_fish = fish:AddDropdown("select_fish", {


Title = "Select Fish",
Values = equipped_fish,
Multi = false,
Default = "",
})
select_fish:OnChanged(function(Value)
getgenv().select_fish = Value
end)

fish:AddButton({
Title = "Refresh Fish List",
Callback = function()
get_equipped_fish()
select_fish:SetValues(equipped_fish)
end
})

fish:AddButton({
Title = "Fish Dupe",
Description = "",
Callback = function()
local back_pack = [Link]
local char = [Link] or [Link]:Wait()

local rod_name = [Link][[Link]].[Link]


local rod = back_pack:FindFirstChild(rod_name)

if rod then
[Link]:EquipTool(rod)
end

local selected = back_pack:FindFirstChild(getgenv().select_fish)

if selected then
[Link] = char
end
end
})

fish:AddButton({
Title = "Validate Fish",
Description = "",
Callback = function()

[Link]:FindFirstChild("Appraiser").[Link]:InvokeServer()
end
})

Window:SelectTab(1)
Fluent:Notify({
Title = "Allux",
Content = "Executed!",
Duration = 8
})

You might also like