Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
- local Window = Rayfield:CreateWindow({
- Name = "Rayfield Example Window",
- LoadingTitle = "Rayfield Interface Suite",
- LoadingSubtitle = "by Sirius",
- ConfigurationSaving = {
- Enabled = true,
- FolderName = nil, -- Create a custom folder for your hub/game
- FileName = "Big Hub"
- },
- Discord = {
- Enabled = false,
- 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 = "Sirius Hub",
- Subtitle = "Key System",
- Note = "Join the discord (discord.gg/sirius)",
- FileName = "SiriusKey",
- SaveKey = true,
- GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
- Key = "Hello"
- }
- })
- local Tab = Window:CreateTab("Tab Example", 4483362458)
- local Section = Tab:CreateSection("Section Example")
- Rayfield:Notify({
- Title = "Notification Title",
- Content = "Notification Content",
- Duration = 6.5,
- Image = 4483362458,
- Actions = { -- Notification Buttons
- Ignore = {
- Name = "Okay!",
- Callback = function()
- print("The user tapped Okay!")
- end
- },
- },
- })
- local Button = Tab:CreateButton({
- Name = "Button Example",
- Callback = function()
- for i,v in next, getgc(true) do
- if type(v) == "table" then
- if rawget(v, "Damage") then
- rawset(v, "Damage", 999) -- dont make the value too high it might crash the game and its kinda useless
- rawset(v, "Power", 3) -- dont change or it will just not work
- end
- end
- end
- end,
- })
- Rayfield:LoadConfiguration()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement