Advertisement
Imakerblxscripts55

Untitled

Sep 17th, 2024
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. local Window = Rayfield:CreateWindow({
  2. Name = "UnivsersalV1",
  3. LoadingTitle = "Loading..",
  4. LoadingSubtitle = "by grappabroskiskibidilewandoski. ",
  5. ConfigurationSaving = {
  6. Enabled = true,
  7. FolderName = nil, -- Create a custom folder for your hub/game
  8. FileName = "Test"
  9. },
  10. Discord = {
  11. Enabled = false,
  12. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  13. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  14. },
  15. KeySystem = false, -- Set this to true to use our key system
  16. KeySettings = {
  17. Title = "Untitled",
  18. Subtitle = "Key System",
  19. Note = "No method of obtaining the key is provided",
  20. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  21. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  22. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  23. 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")
  24. }
  25. })
  26.  
  27. local Tab = Window:CreateTab("Main", 4483362458) -- Title, Image
  28.  
  29. local Button = Tab:CreateButton({
  30. Name = "Infinite Yield",
  31. Callback = function()
  32. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  33. -- The function that takes place when the button is pressed
  34. end,
  35. })
  36.  
  37. local Tab = Window:CreateTab("Others", 4483362458) -- Title, Image
  38.  
  39. local Button = Tab:CreateButton({
  40. Name = "Fling Gui",
  41. Callback = function()
  42. loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI"))()
  43. -- The function that takes place when the button is pressed
  44. end,
  45. })
  46.  
  47. local Button = Tab:CreateButton({
  48. Name = "TRS",
  49. Callback = function()
  50. loadstring(game:HttpGet("https://raw.githubusercontent.com/nuvexa-yay/Scripts/main/TRS/Mobile"))()
  51. -- The function that takes place when the button is pressed
  52. end,
  53. })
  54.  
  55. local Button = Tab:CreateButton({
  56. Name = "STFO (not my script)",
  57. Callback = function()
  58. loadstring(game:HttpGet("https://raw.githubusercontent.com/nuvexa-yay/Scripts/main/STFO/Main"))()
  59. -- The function that takes place when the button is pressed
  60. end,
  61. })
  62.  
  63. local Button = Tab:CreateButton({
  64. Name = "Prison Life",
  65. Callback = function()
  66. loadstring(game:HttpGet("https://raw.githubusercontent.com/dalloc2/Roblox/main/TigerAdmin.lua"))()
  67. -- The function that takes place when the button is pressed
  68. end,
  69. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement