Advertisement
quikzyYTbtw

Roblox Script Loader/Auth

May 2nd, 2024 (edited)
702
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.93 KB | None | 0 0
  1. --[[
  2. This script loads and executes different scripts based on the game's place ID, with the option to turn off game check for loading universal scripts
  3.  
  4. [+] Added Inbuild Keysystem
  5.  
  6. Info:
  7. emojis currently a bit bugged!
  8. ]]
  9.  
  10.  
  11.  
  12. -- Gamelist
  13. getgenv().gamesConfig = {
  14.     {
  15.         gameName = "A literal baseplate",
  16.         placeId = 4483381587,
  17.         ConfigScript = [[ --script in here]]
  18.     },
  19.     {
  20.         gameName = "Game Placeholder",
  21.         placeId = 0000000000,
  22.         ConfigScript = [[ --script here  ]]
  23.     },
  24.     -- Add more games if needed!
  25. }
  26.  
  27. --[[LOGO]]--
  28. getgenv().logo = [[
  29.     Welcome to
  30.         ____   ____                             _________            .__        __          
  31.         \   \ /   /____   ____   _______  ___  /   _____/ ___________|__|______/  |_  ______
  32.          \   Y   // __ \ /    \ /  _ \  \/  /  \_____  \_/ ___\_  __ \  \____ \   __\/  ___/
  33.           \     /\  ___/|   |  (  <_> >    <   /        \  \___|  | \/  |  |_> >  |  \___ \
  34.            \___/  \___  >___|  /\____/__/\_ \ /_______  /\___  >__|  |__|   __/|__| /____  >
  35.                       \/     \/            \/         \/     \/         |__|             \/
  36.                                         discord.gg/
  37.          [*] made by venox.w#0
  38.  
  39.     ]]
  40.  
  41. --[[KEYSYSTEM]]--
  42. getgenv().keysystem = true
  43. getgenv().key = "test"                            -- (can also use HttpGet or Loadstring to load the key details for example from a unlisted paste)
  44. getgenv().keylink = "url to obtain key"
  45.  
  46. --[[GAME CHECK]]--
  47. getgenv().gamechecker = true                                      --game placeid checker on/off (true/false)
  48. getgenv().ScriptName = "Name Here"                                --name of your script
  49. getgenv().UniversalScript = [[ -- script here ]]                  --script to execute when gamechecker off
  50.  
  51. -- Loader
  52. loadstring(game:HttpGet(("https://raw.githubusercontent.com/venoxhh/LoaderV1/main/Loader.lua")))()
  53.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement