0% found this document useful (0 votes)
13 views

message 3

The document provides a script for a game called 'blade ball' using the Rayfield library. It includes features like a key system for access, Discord integration, and toggle options for 'Auto parry' and 'Auto spam'. The script also allows for configuration saving and customization of the user interface.

Uploaded by

itaitachi41
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

message 3

The document provides a script for a game called 'blade ball' using the Rayfield library. It includes features like a key system for access, Discord integration, and toggle options for 'Auto parry' and 'Auto spam'. The script also allows for configuration saving and customization of the user interface.

Uploaded by

itaitachi41
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

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

menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "blade ball script",
Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image
(number). 0 to use no icon (default).
LoadingTitle = "best script",
LoadingSubtitle = "by IKӨЯZ",
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 = true,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "blade ball"
},

Discord = {
Enabled = true, -- Prompt the user to join your Discord server if their
executor supports it
Invite = "https://dsc.gg/server-de-ikorz", -- The Discord invite code, do not
include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
RememberJoins = false -- 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 System",
Subtitle = "Key System",
Note = "the key is go to the discord", -- 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 = false, -- 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 = {"a61708c6aa10329c3bc0c7c19265b097045c71b8c0aeedef564fe0b52f60108a"} --
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 = "blade ball script",
Content = "thanks for useing the script",
Duration = 6.5,
Image = 4483362458,
})
local Tab = Window:CreateTab("Mian", 4483362458) -- Title, Image

local Toggle = Tab:CreateToggle({


Name = "Auto parry",
CurrentValue = false,
Flag = "Toggle1", -- 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)
-- put the suto parry code here
end,
})
local Toggle = Tab:CreateToggle({
Name = "Auto spam",
CurrentValue = false,
Flag = "Toggle1", -- 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)
-- put the suto spame code here
end,
})

You might also like