Guest User

shindo life script

a guest
Aug 1st, 2024
7,199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "📜Shindo Life Script📜",
  5. LoadingTitle = "Husky's Hub",
  6. LoadingSubtitle = "by Husky",
  7. ConfigurationSaving = {
  8. Enabled = false,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "HuskysHub"
  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 = "Shindo Life | Key",
  20. Subtitle = "Key System",
  21. Note = "Coming Soon",
  22. FileName = "huskyshubkey", -- 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://paste-drop.com/paste/mm03n7YKHG"} -- 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("🏠 Home", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Main")
  31.  
  32. local Button = MainTab:CreateButton({
  33. Name = "Script 1 (ESP)",
  34. Callback = function()
  35. loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Universal-ESP-Script-mobile-11025") )()
  36. end,
  37. })
  38.  
  39.  
Advertisement
Add Comment
Please, Sign In to add comment