local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "🍌 Banana Hub",
LoadingTitle = "Loading System...",
LoadingSubtitle = "by Public Edition",
ConfigurationSaving = { Enabled = false }
})
local Tab = Window:CreateTab("Main", 4483362458)
local Section = Tab:CreateSection("Auto Farm")
_G.AutoSpawn = false
Tab:CreateToggle({
Name = "Auto Spawn Bananas (0.2s)",
CurrentValue = false,
Flag = "BananaToggle",
Callback = function(Value)
_G.AutoSpawn = Value
if Value then
task.spawn(function()
while _G.AutoSpawn do
local remote = game:GetService("ReplicatedStorage"):FindFirstChild("SpawnBanana")
if remote then
remote:FireServer()
end
task.wait(0.2)
end
end)
end
end,
})
local Section = Tab:CreateSection("Extreme Player Settings")
Tab:CreateSlider({
Name = "WalkSpeed",
Range = {-1, 1000},
Increment = 1,
Suffix = "Speed",
CurrentValue = 16,
Flag = "SpeedSlider",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
end,
})
Tab:CreateSlider({
Name = "JumpPower",
Range = {50, 1000},
Increment = 1,
Suffix = "Power",
CurrentValue = 50,
Flag = "JumpSlider",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.UseJumpPower = true
game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
end,
})
-- MENU TROLL
local TabTroll = Window:CreateTab("Troll", 4483362458)
TabTroll:CreateButton({
Name = "BRUA (Bring Unanchored Parts)",
Callback = function()
for _, v in pairs(game.Workspace:GetDescendants()) do
if v:IsA("Part") and v.Anchored == false then
v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
end
end
end,
})
_G.NoClip = false
TabTroll:CreateToggle({
Name = "Noclip / Clip",
CurrentValue = false,
Callback = function(Value)
_G.NoClip = Value
game:GetService("RunService").Stepped:Connect(function()
if _G.NoClip then
for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA("BasePart") then
v.CanCollide = false
end
end
end
end)
end,
})
-- MENU MISC
local TabMisc = Window:CreateTab("Misc", 4483362458)
TabMisc:CreateButton({
Name = "Destroy UI",
Callback = function()
Rayfield:Destroy()
end,
})
-- MENU CREDITS
local TabCredits = Window:CreateTab("Credits", 4483362458)
TabCredits:CreateSection("Information")
TabCredits:CreateLabel("Created in 2025")
TabCredits:CreateLabel("by Public Edition")
TabCredits:CreateLabel("Enjoy Banana Hub!")
Rayfield:Notify({
Title = "Hub Loaded!",
Content = "Welcome to Banana Hub - 2025 Edition",
Duration = 5,
Image = 4483362458,
})
Comments
No comments yet
Be the first to share your thoughts!