Advertisement
RedactedDD

SCP Roleplay: Area 47 / SCRIPT

Dec 8th, 2024 (edited)
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "SCP Roleplay: Area 47 / OP",
  4. Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  5. LoadingTitle = "SCP Roleplay: Area 47",
  6. LoadingSubtitle = "by XSavior",
  7. Theme = "Ocean", -- Check https://docs.sirius.menu/rayfield/configuration/themes
  8.  
  9. DisableRayfieldPrompts = false,
  10. DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
  11.  
  12. ConfigurationSaving = {
  13. Enabled = false,
  14. FolderName = nil, -- Create a custom folder for your hub/game
  15. FileName = "Big Hub"
  16. },
  17.  
  18. Discord = {
  19. Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
  20. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  21. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  22. },
  23.  
  24. KeySystem = false, -- Set this to true to use our key system
  25. KeySettings = {
  26. Title = "Untitled",
  27. Subtitle = "Key System",
  28. Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key
  29. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  30. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  31. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  32. 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")
  33. }
  34. })
  35.  
  36. Rayfield:Notify({
  37. Title = "Script",
  38. Content = "Script Successfully Executed!",
  39. Duration = 6.5,
  40. Image = "apple",
  41. })
  42.  
  43. local Tab = Window:CreateTab("Main", 80074847937524) -- Title, Image
  44.  
  45. local Label = Tab:CreateLabel("No gamepass required | By XSavior", 4483362458, Color3.fromRGB(255, 255, 255), false) -- Title, Icon, Color, IgnoreTheme
  46.  
  47. local Input = Tab:CreateInput({
  48. Name = "Arrest",
  49. CurrentValue = "",
  50. PlaceholderText = "Username",
  51. RemoveTextAfterFocusLost = true,
  52. Flag = "Input1",
  53. Callback = function()
  54. game.ReplicatedStorage.Arrest:FireServer""
  55. end,
  56. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement