Skip to content

Instantly share code, notes, and snippets.

@kuziciyatennim
Created February 6, 2025 14:21
Show Gist options
  • Save kuziciyatennim/4e3e65a71727056c463bcb0f6aaabab0 to your computer and use it in GitHub Desktop.
Save kuziciyatennim/4e3e65a71727056c463bcb0f6aaabab0 to your computer and use it in GitHub Desktop.
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "Apex Arsenal",
Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
LoadingTitle = "Apex Hub",
LoadingSubtitle = "by Apex",
Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
DisableRayfieldPrompts = false,
DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
ConfigurationSaving = {
Enabled = false,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "ApexHub"
},
Discord = {
Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
Invite = "https://discord.gg/JSZpCGc4Ga", -- 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 = "Apex Hub",
Subtitle = "Link in discord server",
Note = "join server in misc tab", -- Use this to tell the user how to get a key
FileName = "ApexHubKey", -- 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 = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
Key = {"apexbestexecutoryeah"} -- 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("Autofarm💻",nil) -- Title, Image
local MainSection = MainTab:CreateSection("Main")
Rayfield:Notify({
Title = "you executed the best script",
Content = "very good ui",
Duration = 5,
Image = nil,
})
local Button = MainTab:CreateButton({
Name = "inf jump press v to open",
Callback = function()
pcall(loadstring(game:HttpGet("https://pastebin.com/raw/2wgbZ6Xd")))
end,
})
local Button = MainTab:CreateButton({
Name = "Infinite Yield",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
end,
})
local Button = MainTab:CreateButton({
Name = "auto farm",
Callback = function()
loadstring(game:HttpGet("https://pastebin.com/raw/0UZKNehs", true))()
end,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment