roblox_rayfield_ui_script.lua

View and share code snippets on Pastefy.

local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

local Window = Rayfield:CreateWindow({

   Name = "binarickidd's Hub",

   Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).

   LoadingTitle = "Script hub",

   LoadingSubtitle = "by binarickidd",

   Theme = "Ocean", -- 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 = true,

      FolderName = nil, -- Create a custom folder for your hub/game

      FileName = "Big Hub"

   },

   Discord = {

      Enabled = false, -- Prompt the user to join your Discord server if their executor supports it

      Invite = "noinvitelink", -- 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 = false, -- Set this to true to use our key system

   KeySettings = {

      Title = "Untitled",

      Subtitle = "Key System",

      Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key

      FileName = "Key", -- 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 = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")

   }

})

Rayfield:Notify({

   Title = "Script hub by binarickidd",

   Content = "Thanks for using our script, ur awesome",

   Duration = 3.5,

   Image = 4483362458,

})

local Tab = Window:CreateTab("Admin scripts", 4483362458) -- Title, Image

local Section = Tab:CreateSection("Admin scripts")

local Button = Tab:CreateButton({

   Name = "Nameless admin",

   Callback = function()

   loadstring(game:HttpGet("https://raw.githubusercontent.com/ltseverydayyou/Nameless-Admin/main/Source"))();

   end,

})

local Button = Tab:CreateButton({

   Name = "Nameless admin (For pc)",

   Callback = function()

   loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source"))()

   end,

})

local Button = Tab:CreateButton({

   Name = "Infinite yield",

   Callback = function()

   loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()

   end,

})

local Button = Tab:CreateButton({

   Name = "OPFinality",

   Callback = function()

   loadstring(game:HttpGet("https://raw.githubusercontent.com/XziuhxPlay/ROBLOX-SCRIPT/main/wait.lua", true))();

   end,

})

local Tab = Window:CreateTab("Hitbox", 4483362458) -- Title, Image

local Section = Tab:CreateSection("Hitbox scripts")

local Button = Tab:CreateButton({

   Name = "Hitbox expander",

   Callback = function()

   loadstring(game:HttpGet("https://pastebin.com/raw/8QH1d6nC"))()

   end,

})

local Button = Tab:CreateButton({

   Name = "Project bullshit",

   Callback = function()

   loadstring(game:HttpGet("https://raw.githubusercontent.com/XziuhxPlay/ROBLOX-SCRIPT/main/LOL.lua", true))()

   end,

})

local Tab = Window:CreateTab("Brookhaven", 4483362458) -- Title, Image

local Section = Tab:CreateSection("Brookhaven scripts")

local Button = Tab:CreateButton({

   Name = "R4D",

   Callback = function()

   loadstring(game:HttpGet("https://rawscripts.net/raw/Brookhaven-RP-R4D-TROLL-NO-KEY-17625"))()

   end,

})

local Button = Tab:CreateButton({

   Name = "Ghosthub",

   Callback = function()

   loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/GhostHub'))()

   end,

})

local Button = Tab:CreateButt

Tags

lang-lua rayfield roblox script-hub ui

Description

A Roblox script using the Rayfield UI library. It appears to be a script hub named 'binarickidd's Hub' with options for customization like theme, loading titles, and configuration saving. The script loads external code from 'https://sirius.menu/rayfield'.