Advertisement
vegeta_mecadonalds59

Untitled

Dec 16th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "✨ Lix Services Script ✨",
  5. Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  6. LoadingTitle = "Example Hub",
  7. LoadingSubtitle = "by Lix",
  8. Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
  9.  
  10. DisableRayfieldPrompts = false,
  11. DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
  12.  
  13. ConfigurationSaving = {
  14. Enabled = true,
  15. FolderName = nil, -- Create a custom folder for your hub/game
  16. FileName = "Lix Hub"
  17. },
  18.  
  19. Discord = {
  20. Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
  21. Invite = "w24vd7ERvu", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  22. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  23. },
  24.  
  25. KeySystem = true, -- Set this to true to use our key system
  26. KeySettings = {
  27. Title = "Lix Services Script | key",
  28. Subtitle = "Link for key is in discord",
  29. Note = "Join server from misc tab", -- Use this to tell the user how to get a key
  30. FileName = "EXAMPLEHUBKEY", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  31. SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  32. GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  33. Key = {"https://pastebin.com/raw/BHdcPC6c"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  34. }
  35. })
  36.  
  37. local MainTab = Window:CreateTab("🏠 Home", nil) -- Title, Image
  38. local MainSection = MainTab:CreateSection("Main")
  39.  
  40. Rayfield:Notify({
  41. Title = "Best script ever",
  42. Content = "ui made by lix",
  43. Duration = 5,
  44. Image = 4483362458,
  45. })
  46.  
  47. local Slider = MainTab:CreateSlider({
  48. Name = "Walkspeed",
  49. Range = {0, 200},
  50. Increment = 1,
  51. Suffix = "speed",
  52. CurrentValue = 16,
  53. Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  54. Callback = function(Value)
  55. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  56. end,
  57. })
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement