local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/liebertsx/Tora-Library/main/src/librarynew",true))() local tab = library:CreateWindow("Spectravax Hub") local folder = tab:AddFolder("[⭐] Feature") folder:AddButton({ text = "Infinite Money", flag = "fuse_button", callback = function() local fuse = game:GetService("ReplicatedStorage"):FindFirstChild("FUSE") if fuse and fuse:IsA("RemoteEvent") then for i = 1, 100 do fuse:FireServer() wait(0.03) -- Small delay to avoid issues end else warn("FUSE RemoteEvent not found in ReplicatedStorage!") end end }) -- Add a close button folder:AddButton({ text = "Close GUI", flag = "close_button", callback = function() library:Close() -- Closes the entire library UI end }) library:Init()