Advertisement
lypherx

Untitled

Aug 9th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "MURDER MYSTERY 2",
  5. LoadingTitle = "SCRIPT LOADING",
  6. LoadingSubtitle = "by MM2HUB",
  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 = "Untitled",
  20. Subtitle = "Key System",
  21. Note = "No method of obtaining the key is provided",
  22. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  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"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26. }
  27. })
  28.  
  29.  
  30.  
  31. local Tab = Window:CreateTab("INFORMATION", 4483362458) -- Title, Image
  32.  
  33. local Button = Tab:CreateButton({
  34. Name = "WAIT FOR 5 MINUTE AND IT WILL WORK",
  35. Callback = function()
  36. -- The function that takes place when the button is pressed
  37. end,
  38. })
  39.  
  40.  
  41.  
  42. local Tab = Window:CreateTab("SAFETY", 4483362458) -- Title, Image
  43.  
  44.  
  45. local Button = Tab:CreateButton({
  46. Name = "CLICK FOR SAFETY",
  47. Callback = function()
  48. -- The function that takes place when the button is pressed
  49. end,
  50. })
  51.  
  52. local Tab = Window:CreateTab("MURDER", 4483362458) -- Title, Image
  53.  
  54. local Button = Tab:CreateButton({
  55. Name = "CLICK FOR BE MURDER",
  56. Callback = function()
  57. -- The function that takes place when the button is pressed
  58. end,
  59. })
  60.  
  61. local Tab = Window:CreateTab("GOD MODE", 4483362458) -- Title, Image
  62.  
  63.  
  64. local Button = Tab:CreateButton({
  65. Name = "CLICK FOR GODMODE",
  66. Callback = function()
  67. -- The function that takes place when the button is pressed
  68. end,
  69. })
  70.  
  71. local Tab = Window:CreateTab("AIM HACK", 4483362458) -- Title, Image
  72.  
  73.  
  74. local Button = Tab:CreateButton({
  75. Name = "CLICK FOR SILENTAIM",
  76. Callback = function()
  77. -- The function that takes place when the button is pressed
  78. end,
  79. })
  80.  
  81. local Tab = Window:CreateTab("TRADE SCAM", 4483362458) -- Title, Image
  82.  
  83. local Button = Tab:CreateButton({
  84. Name = "CLICK FOR TRADE SCAM",
  85. Callback = function()
  86. -- The function that takes place when the button is pressed
  87. end,
  88. })
  89.  
  90.  
  91.  
  92.  
  93.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement