local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local Window = Rayfield:CreateWindow({ Name = "Silentscripts leaked - key system deleted by thirst (darkdex)", LoadingTitle = "leak loading by leak", LoadingSubtitle = "by Thirst (Darkdex)", ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "SilentScriptsConfig" }, }) local MainTab = Window:CreateTab("Main", 4483362458) MainTab:CreateButton({Name = "Item Sell", Callback = function() ReplicatedStorage.Remotes.ItemSell:FireServer() end}) MainTab:CreateButton({Name = "Sell All Plants", Callback = function() ReplicatedStorage.Remotes.ItemSell:FireServer() end}) MainTab:CreateButton({Name = "Sell Item in Hand", Callback = function() ReplicatedStorage.Remotes.ItemSell:FireServer() end}) MainTab:CreateButton({Name = "Auto Open Meme Lucky Egg", Callback = function() ReplicatedStorage.Remotes.OpenEgg:FireServer("Meme Lucky Egg") end}) MainTab:CreateButton({Name = "Auto Open Godly Lucky Egg", Callback = function() ReplicatedStorage.Remotes.OpenEgg:FireServer("Godly Lucky Egg") end}) MainTab:CreateButton({Name = "Auto Open Secret Lucky Block", Callback = function() ReplicatedStorage.Remotes.OpenEgg:FireServer("Secret Lucky Egg") end}) local AutoFarmTab = Window:CreateTab("Auto Farm", 4483362458) local AutoCollectEnabled = false local AutoAttackEnabled = false AutoFarmTab:CreateToggle({Name = "Auto Collect + Equip Best", CurrentValue = false, Callback = function(Value) AutoCollectEnabled = Value end}) AutoFarmTab:CreateToggle({Name = "Auto Attack Brainrots", CurrentValue = false, Callback = function(Value) AutoAttackEnabled = Value end}) RunService.Stepped:Connect(function() if AutoCollectEnabled then ReplicatedStorage.Remotes.EquipBest:Fire() end if AutoAttackEnabled then pcall(function() ReplicatedStorage.Remotes.AttacksServer.WeaponAttack:FireServer({"66624ea7-0d71-4"}) end) end end) local MovementTab = Window:CreateTab("Movement", 4483362458) MovementTab:CreateSlider({Name = "WalkSpeed", Range = {16, 250}, Increment = 1, Suffix = "speed", CurrentValue = 16, Callback = function(Value) if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.WalkSpeed = Value end end}) MovementTab:CreateSlider({Name = "JumpPower", Range = {50, 500}, Increment = 5, Suffix = "jump", CurrentValue = 50, Callback = function(Value) if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.JumpPower = Value end end}) local InfJumpEnabled = false MovementTab:CreateToggle({Name = "Infinite Jump", CurrentValue = false, Callback = function(Value) InfJumpEnabled = Value end}) UserInputService.JumpRequest:Connect(function() if InfJumpEnabled and player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid:ChangeState("Jumping") end end) local NoclipEnabled = false MovementTab:CreateToggle({Name = "Noclip", CurrentValue = false, Callback = function(Value) NoclipEnabled = Value end}) RunService.Stepped:Connect(function() if NoclipEnabled and player.Character then for _, part in pairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) local DiscordTab = Window:CreateTab("Discord", 4483362458) DiscordTab:CreateButton({Name = "Join our discord server for support (copy)", Callback = function() local discordLink = "https://discord.gg/GSTfEVvwDK" if setclipboard then setclipboard(discordLink) else print("Discord link copied: "..discordLink) end end})