Advertisement
Darkened_Skull

Car Script

Jun 29th, 2023 (edited)
4,678
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.12 KB | None | 0 1
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4.    Name = "Vehicle Legends 🏎 NEW CARS!|Script|",
  5.    LoadingTitle = "DARKNESS HUB",
  6.    LoadingSubtitle = "by Darkened Skull",
  7.    ConfigurationSaving = {
  8.       Enabled = false,
  9.       FolderName = nil, -- Create a custom folder for your hub/game
  10.       FileName = "Big Hub"
  11.    },
  12.    Youtube = {
  13.       Enabled = true,
  14.       Invite = "https://www.youtube.com/channel/UCGn_Z00TvOqP2ZqRg8_KB5Q", -- 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 = "DARKNESS HUB",
  20.       Subtitle = "Key System",
  21.       Note = "Get Key Here: https://pastebin.com/raw/6XjU2dK9",
  22.       FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23.       SaveKey = false, -- 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://pastebin.com/raw/6XjU2dK9"} -- 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("Car 🏎 Speed & Brake", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Load 🏡 Script-(AaronS#1454)")
  31.  
  32. Rayfield:Notify({
  33.    Title = "Executed",
  34.    Content = "Subscribe Darkened Skull",
  35.    Duration = 6.5,
  36.    Image = nil,
  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. local Button = MainTab:CreateButton({
  48.    Name = "Execute Script",
  49.    Callback = function()
  50.    -- Loads The Gui
  51.    loadstring(game:HttpGet('https://pastebin.com/raw/FSLFyYFz'))()
  52.    end,
  53. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement