Back to Scripts
Silentscripts Leak Source
ScriptBlox
Free
Game: [🎃UPD] Fish It! 🐟
493,185
Views
15
Likes
2
Dislikes

thirst
offline
Features
Join our discord for more: https://discord.gg/aqS2kye6HC
Auto Sell
Bypass Fishing Radar
Bypass Diving Gear
Buy All Boats
Buy All Gears
Buy All Weathers
Buy All Fishing Rods
Redeem All Codes
DeSpawn Boat
Spawn Boat
Tags
Script Code
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local RETextNotification = ReplicatedStorage.Packages._Index["[email protected]"].net["RE/TextNotification"]
firesignal(RETextNotification.OnClientEvent, {
Text = "leaked by thirst",
Type = "Text",
TextColor = { R = 255, G = 58, B = 84 }
})
local Window = Rayfield:CreateWindow({
Name = "SillyHub leak by thirst (darkdex)",
LoadingTitle = "Sillyhub is loading with fckjmp",
LoadingSubtitle = "by thirst",
ConfigurationSaving = {
Enabled = true,
FolderName = nil,
FileName = "SilentHub"
},
Discord = {
Enabled = false,
Invite = "https://discord.gg/aqS2kye6HC",
RememberJoins = true
},
KeySystem = false
})
local autoSellEnabled = false
local RFSellAllItems = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/SellAllItems"]
spawn(function()
while true do
wait(0.8)
if autoSellEnabled then
pcall(function()
RFSellAllItems:InvokeServer()
end)
end
end
end)
local MainTab = Window:CreateTab("Main", 4483362458)
local MainSection = MainTab:CreateSection("Main Features")
local AutoSellToggle = MainTab:CreateToggle({
Name = "Auto Sell Items",
CurrentValue = false,
Flag = "AutoSellToggle",
Callback = function(Value)
autoSellEnabled = Value
if Value then
Rayfield:Notify({
Title = "Auto Sell",
Content = "Auto sell enabled! Selling every 0.8s",
Duration = 3,
Image = 4483362458,
})
else
Rayfield:Notify({
Title = "Auto Sell",
Content = "Auto sell disabled!",
Duration = 3,
Image = 4483362458,
})
end
end,
})
local BypassSection = MainTab:CreateSection("Bypass Features")
local BypassFishingRadarButton = MainTab:CreateButton({
Name = "Bypass Fishing Radar",
Callback = function()
local RFUpdateFishingRadar = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/UpdateFishingRadar"]
RFUpdateFishingRadar:InvokeServer(false)
Rayfield:Notify({
Title = "Bypass",
Content = "Fishing radar bypassed!",
Duration = 3,
Image = 4483362458,
})
end,
})
local BypassDivingGearButton = MainTab:CreateButton({
Name = "Bypass Diving Gear",
Callback = function()
local RFEquipOxygenTank = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/EquipOxygenTank"]
RFEquipOxygenTank:InvokeServer(105)
Rayfield:Notify({
Title = "Bypass",
Content = "Diving gear equipped!",
Duration = 3,
Image = 4483362458,
})
end,
})
local ShopTab = Window:CreateTab("Shop", 4483362458)
local BoatsSection = ShopTab:CreateSection("Buy Boats")
local boats = {
{name = "Small Boat", id = 1},
{name = "Kayak", id = 2},
{name = "Jetski", id = 3},
{name = "Highfield Boat", id = 4},
{name = "Speed Boat", id = 5},
{name = "Fishing Boat", id = 6},
{name = "Mini Yacht", id = 7}
}
for _, boat in ipairs(boats) do
ShopTab:CreateButton({
Name = "Buy " .. boat.name,
Callback = function()
local RFPurchaseBoat = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/PurchaseBoat"]
RFPurchaseBoat:InvokeServer(boat.id)
Rayfield:Notify({
Title = "Shop",
Content = "Purchased " .. boat.name .. "!",
Duration = 3,
Image = 4483362458,
})
end,
})
end
local GearsSection = ShopTab:CreateSection("Buy Gears")
ShopTab:CreateButton({
Name = "Buy Fishing Radar",
Callback = function()
local RFPurchaseGear = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/PurchaseGear"]
RFPurchaseGear:InvokeServer(81)
Rayfield:Notify({
Title = "Shop",
Content = "Purchased Fishing Radar!",
Duration = 3,
Image = 4483362458,
})
end,
})
ShopTab:CreateButton({
Name = "Buy Diving Gear",
Callback = function()
local RFPurchaseGear = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/PurchaseGear"]
RFPurchaseGear:InvokeServer(105)
Rayfield:Notify({
Title = "Shop",
Content = "Purchased Diving Gear!",
Duration = 3,
Image = 4483362458,
})
end,
})
local WeatherSection = ShopTab:CreateSection("Buy Weather")
local weathers = {"Cloudy", "Snow", "Storm", "Radiant", "SharkHunt", "Wind"}
for _, weather in ipairs(weathers) do
ShopTab:CreateButton({
Name = "Buy " .. weather,
Callback = function()
local RFPurchaseWeatherEvent = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/PurchaseWeatherEvent"]
RFPurchaseWeatherEvent:InvokeServer(weather)
Rayfield:Notify({
Title = "Shop",
Content = "Purchased " .. weather .. " weather!",
Duration = 3,
Image = 4483362458,
})
end,
})
end
local RodsSection = ShopTab:CreateSection("Buy Fishing Rods")
local rods = {
{name = "Luck Rod", id = 79},
{name = "Carbon Rod", id = 76},
{name = "Grass Rod", id = 85},
{name = "Damascus Rod", id = 77},
{name = "Ice Rod", id = 78},
{name = "Lucky Rod", id = 4},
{name = "Midnight Rod", id = 80},
{name = "Steampunk Rod", id = 6},
{name = "Chrome Rod", id = 7}
}
for _, rod in ipairs(rods) do
ShopTab:CreateButton({
Name = "Buy " .. rod.name,
Callback = function()
local RFPurchaseFishingRod = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/PurchaseFishingRod"]
RFPurchaseFishingRod:InvokeServer(rod.id)
Rayfield:Notify({
Title = "Shop",
Content = "Purchased " .. rod.name .. "!",
Duration = 3,
Image = 4483362458,
})
end,
})
end
local CodesTab = Window:CreateTab("Redeem Codes", 4483362458)
local CodesSection = CodesTab:CreateSection("Available Codes")
CodesTab:CreateButton({
Name = "Redeem All Codes",
Callback = function()
local RFRedeemCode = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/RedeemCode"]
local codes = {"ARMOR", "SHARKSSS", "MUTATE", "100M", "THEWHEEL", "FREEBIES", "WOWSPINS"}
Rayfield:Notify({
Title = "Codes",
Content = "Redeeming all codes...",
Duration = 3,
Image = 4483362458,
})
for _, code in ipairs(codes) do
pcall(function()
RFRedeemCode:InvokeServer(code)
end)
wait(0.5)
end
Rayfield:Notify({
Title = "Codes",
Content = "All codes redeemed!",
Duration = 3,
Image = 4483362458,
})
end,
})
local CodesListSection = CodesTab:CreateSection("Codes: ARMOR, SHARKSSS, MUTATE, 100M, THEWHEEL, FREEBIES, WOWSPINS")
local MiscTab = Window:CreateTab("Misc", 4483362458)
local BoatManagementSection = MiscTab:CreateSection("Boat Management")
MiscTab:CreateButton({
Name = "Despawn Current Boat",
Callback = function()
local RFDespawnBoat = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/DespawnBoat"]
RFDespawnBoat:InvokeServer()
Rayfield:Notify({
Title = "Misc",
Content = "Boat despawned!",
Duration = 3,
Image = 4483362458,
})
end,
})
local SpawnBoatsSection = MiscTab:CreateSection("Spawn Boats")
for _, boat in ipairs(boats) do
MiscTab:CreateButton({
Name = "Spawn " .. boat.name,
Callback = function()
local RFSpawnBoat = ReplicatedStorage.Packages._Index["[email protected]"].net["RF/SpawnBoat"]
RFSpawnBoat:InvokeServer(boat.id)
Rayfield:Notify({
Title = "Misc",
Content = "Spawned " .. boat.name .. "!",
Duration = 3,
Image = 4483362458,
})
end,
})
end
Rayfield:Notify({
Title = "SilentHub",
Content = "Loaded successfully!",
Duration = 5,
Image = 4483362458,
})
print("SilentHub loaded successfully!")
Comments (0)
Please login to comment
Login with Discord
Loading comments...