local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Plant Adventure secret script pudge24", LoadingTitle = "PVZ robaxos", LoadingSubtitle = "by Pudge24", ConfigurationSaving = { Enabled = true, FolderName = "Pudger24Hub", -- Create a custom folder for your hub/game FileName = "PVZ2_ROBLOX" }, Discord = { Enabled = true, Invite = "Mp9vjHBYC6", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD RememberJoins = true -- Set this to false to make them join the discord every time they load it up }, KeySystem = true, -- Set this to true to use our key system KeySettings = { Title = "Key in the discord channel(мои-скрипты)", Subtitle = "Key System", Note = "discord.gg/Mp9vjHBYC6", FileName = "KeyPVZ2", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from Key = {"https://raw.githubusercontent.com/Pudge24/Pudge24Scripts.github.io/refs/heads/main/README.md"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22") } }) local MainTab = Window:CreateTab("Main", nil) -- Title, Image local MainSection = MainTab:CreateSection("Main") local Slider = MainTab:CreateSlider({ Name = "WalkSpeed Slider", Range = {1, 350}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "sliderws", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value) end, }) local Input = MainTab:CreateInput({ Name = "Walkspeed", PlaceholderText = "1-500", RemoveTextAfterFocusLost = true, Callback = function(Text) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Text) end, }) local Button = MainTab:CreateButton({ Name = "Reset Speed", Callback = function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (10) end, }) local Toggle = MainTab:CreateToggle({ Name = "Loop WalkSpeed", CurrentValue = false, Flag = "toggle4", Callback = function(CurrentValue) if CurrentValue then -- Start the loop _G.loop4 = true while _G.loop4 do game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 55 wait(0.1) -- Adjust the wait time as needed end else -- Stop the loop _G.loop4 = false end end, }) local OtherSection = MainTab:CreateSection("Other") local Button = MainTab:CreateButton({ Name = "Infinite Yield", Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end, }) local ExpTab = Window:CreateTab("Exploits", nil) -- Title, Image local MainExpSection = ExpTab:CreateSection("Exploits") local Toggle = ExpTab:CreateToggle({ Name = "Get inf Suns", CurrentValue = false, Flag = "toggle99", Callback = function(CurrentValue) if CurrentValue then -- Start the loop _G.loop99 = true while _G.loop99 do game:GetService("Players").LocalPlayer.leaderstats.Sun.Value = 999999999999 wait(0.1) -- Adjust the wait time as needed end else -- Stop the loop _G.loop99 = false end end, }) local Toggle = ExpTab:CreateToggle({ Name = "Get inf Diamonds", CurrentValue = false, Flag = "toggle98", Callback = function(CurrentValue) if CurrentValue then -- Start the loop _G.loop98 = true while _G.loop98 do game:GetService("Players").LocalPlayer.leaderstats.Diamonds.Value = 999999999999 wait(0.1) -- Adjust the wait time as needed end else -- Stop the loop _G.loop98 = false end end, })