local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Slendytubbies VS Redux", Icon = 0, LoadingTitle = "Loading...", LoadingSubtitle = "Please Wait", Theme = "Default", DisableRayfieldPrompts = false, DisableBuildWarnings = false, ConfigurationSaving = { Enabled = true, FolderName = VSRedux, FileName = "vsreduxconf" }, Discord = { Enabled = false, Invite = "noinvitelink", RememberJoins = true }, KeySystem = false, KeySettings = { Title = "Untitled", Subtitle = "Key System", Note = "No method of obtaining the key is provided", FileName = "Key", SaveKey = true, GrabKeyFromSite = false, Key = {""} } }) local Main = Window:CreateTab("Main", 0) local Other = Window:CreateTab("Other", 0) local Button = Other:CreateButton({ Name = "Destroy", Callback = function() Rayfield:Destroy() end, }) local Keybind = Main:CreateKeybind({ Name = "Collect Custards (Any Map)", CurrentKeybind = "Q", HoldToInteract = false, Flag = "collectcustards", Callback = function(Keybind) loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/collectcustards"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (Custard Facility)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hatCustardFacility"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (Haunted Mansion)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hathauntedmansion"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (Mountains)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hatmountains"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (OutSkirts)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hatoutskirts"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (Crossroads)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hatscrossroads"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (Secret Lair)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hatsecretlair"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (Teletubby Land)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hatteletubbyland"))() end, }) local Button = Main:CreateButton({ Name = "Collect Hats (Training Maze)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/B4T0NCH1K/vsredux/refs/heads/main/hattrainingmaze"))() end, })