Advertisement
egfw

eyeye

Sep 2nd, 2024
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.02 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4.    Name = "Streetz War 2 Script",
  5.    LoadingTitle = "Street warz 2 ",
  6.    LoadingSubtitle = "by 2StonedServices",
  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 = true,
  14.       Invite = "Ektq2k8ZYX", -- 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 = true, -- Set this to true to use our key system
  18.    KeySettings = {
  19.       Title = "Streetz War 2 Key",
  20.       Subtitle = "Key System",
  21.       Note = "Join Discord and look under the roblox tab",
  22.       FileName = "Keys for 2StonedServices", -- 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 = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25.       Key = {"https://[Log in to view URL]"} -- 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. local MainTab = Window:CreateTab("Self", nil) -- Title, Image
  30. local MainSection = Tab:MainTabCreateSection("Section Example")
  31. Rayfield:Notify({
  32.    Title = "Injected Stat",
  33.    Content = "Injected correctly",
  34.    Duration = 6.5,
  35.    Image = nil,
  36.    Actions = { -- Notification Buttons
  37.       Ignore = {
  38.          Name = "Okay!",
  39.          Callback = function()
  40.          print("The user tapped Okay!")
  41.       end
  42.    },
  43. },
  44. })
  45.  
  46. local Button = mainTab:CreateButton({
  47.    Name = "Button Example",
  48.    Callback = function()
  49.    -- The function that takes place when the button is pressed
  50.    end,
  51. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement