Advertisement
gerisx

Untitled

Mar 26th, 2023 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Rayfield Example Window",
  5. LoadingTitle = "Rayfield Interface Suite",
  6. LoadingSubtitle = "by Sirius",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Big Hub"
  11. },
  12. Discord = {
  13. Enabled = false,
  14. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD.
  15. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16. },
  17. KeySystem = false, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Sirius Hub",
  20. Subtitle = "Key System",
  21. Note = "Join the discord (discord.gg/sirius)",
  22. FileName = "SiriusKey",
  23. SaveKey = true,
  24. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. Key = "Hello"
  26. }
  27. })
  28.  
  29. local Tab = Window:CreateTab("Tab Example", 4483362458)
  30. local Section = Tab:CreateSection("Section Example")
  31.  
  32. Rayfield:Notify({
  33. Title = "Notification Title",
  34. Content = "Notification Content",
  35. Duration = 6.5,
  36. Image = 4483362458,
  37. Actions = { -- Notification Buttons
  38. Ignore = {
  39. Name = "Okay!",
  40. Callback = function()
  41. print("The user tapped Okay!")
  42. end
  43. },
  44. },
  45. })
  46.  
  47.  
  48.  
  49. local Button = Tab:CreateButton({
  50. Name = "Button Example",
  51. Callback = function()
  52. for i,v in next, getgc(true) do
  53. if type(v) == "table" then
  54. if rawget(v, "Damage") then
  55. rawset(v, "Damage", 999) -- dont make the value too high it might crash the game and its kinda useless
  56. rawset(v, "Power", 3) -- dont change or it will just not work
  57. end
  58. end
  59. end
  60. end,
  61. })
  62.  
  63.  
  64. Rayfield:LoadConfiguration()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement