Advertisement
athaha

My script hub👍

Dec 15th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Athaya hub 2",
  5. Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  6. LoadingTitle = "Athaya hub 2",
  7. LoadingSubtitle = "by CoolPersonLol",
  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 = "Big Hub"
  17. },
  18.  
  19. Discord = {
  20. Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
  21. Invite = "noinvitelink", -- 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 = false, -- Set this to true to use our key system
  26. KeySettings = {
  27. Title = "Untitled",
  28. Subtitle = "Key System",
  29. Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key
  30. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  31. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  32. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  33. Key = {"Hello"} -- 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 PlayerTab = Window:CreateTab("Scripts", 4483362458) -- Title, Image
  38.  
  39. local Slider = PlayerTab:CreateSlider({
  40. Name = "WalkSpeed",
  41. Range = {16, 500},
  42. Increment = 1,
  43. Suffix = "WS",
  44. CurrentValue = 1,
  45. 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
  46. Callback = function(Value)
  47. game.Players.LocalPlayer.Character.Humanoid.Walkspeed
  48. end,
  49. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement