Advertisement
XxxAlexcoolxxx

Kevin x hub

Sep 8th, 2023
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Kevin X Hub",
  5. LoadingTitle = "Kevin X Hub",
  6. LoadingSubtitle = "by Alex2991k Aka Kevin",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Big Hub"
  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 = "Untitled",
  20. Subtitle = "Key System",
  21. Note = "No method of obtaining the key is provided",
  22. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. 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")
  26. }
  27. })
  28.  
  29. local Tab = Window:CreateTab("Player", 4483362458) -- Title, Image
  30.  
  31. local Slider = Tab:CreateSlider({
  32. Name = "WalkSpeed",
  33. Range = {10, 100},
  34. Increment = 1,
  35. Suffix = "Speed",
  36. CurrentValue = 10,
  37. 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
  38. Callback = function(Value)
  39. game.Players.LocalPlayer.Character:SetAttribute("SpeedMultiplier", Value)
  40. end,
  41. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement