Advertisement
Guest User

Jay hub

a guest
Jul 31st, 2024
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.53 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Jay hub - Slap battles🖐",
  5. LoadingTitle = "Jay hub - Slap battles🖐",
  6. LoadingSubtitle = "By J man",
  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 = true, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Jay hub key system",
  20. Subtitle = "Key System",
  21. Note = "Join the discord for the key",
  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 = {"Jayhub332"} -- 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("🔥Main🔥", 4483362458) -- Title, IImage
  30. local MainSection = MainTab:CreateSection("Main")
  31.  
  32. local Toggle = MainTab:CreateToggle({
  33. Name = "Slap aura",
  34. CurrentValue = false,
  35. Flag = "Toggle1", -- 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
  36. Callback = function(Value)
  37. loadstring(game:HttpGet("https://rawscripts.net/raw/Slap-Battles-AURA-SCRIPT-1636"))()
  38. end,
  39. })
  40.  
  41. local Toggle = MainTab:CreateToggle({
  42. Name = "Infinite jump",
  43. CurrentValue = false,
  44. Flag = "Toggle1", -- 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
  45. Callback = function(Value)
  46. local InfiniteJumpEnabled = true
  47. game:GetService("UserInputService").JumpRequest:connect(function()
  48. if InfiniteJumpEnabled then
  49. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  50. end
  51. end)
  52. end,
  53. })
  54.  
  55. local Button = MainTab:CreateButton({
  56. Name = "Fly gui v3",
  57. Callback = function()
  58. loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  59. end,
  60. })
  61.  
  62. local BadgesTab = Window:CreateTab("🎖Badges", 4483362458) -- Title, Image
  63. local BadgesSection = Tab:CreateSection("Main")
  64.  
  65. local Button = BadgesTab:CreateButton({
  66. Name = "Siphon autofarm",
  67. Callback = function()
  68. fireclickdetector(game.Workspace.Lobby["Siphon"].ClickDetector)
  69. wait(.3)
  70. if game.Players.LocalPlayer.leaderstats.Glove.Value ~= "Siphon" then
  71. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), workspace.Lobby.Teleport1.TouchInterest.Parent, 0)
  72. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), workspace.Lobby.Teleport1.TouchInterest.Parent, 1)
  73. wait(0.4)
  74. for i,v in pairs(game.Workspace:GetChildren()) do
  75. if v.Name == "SiphonOrb" then
  76. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 0)
  77. firetouchinterest(game.Players.LocalPlayer.Character:WaitForChild("Head"), v, 1)
  78. end
  79. end
  80. wait(0.4)
  81. local serverList = {}
  82. for _, v in ipairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync("https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100")).data) do
  83. if v.playing and type(v) == "table" and v.maxPlayers > v.playing and v.id ~= game.JobId then
  84. serverList[#serverList + 1] = v.id
  85. end
  86. end
  87. if #serverList > 0 then
  88. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, serverList[math.random(1, #serverList)])
  89. end
  90. else
  91. print("You already have siphon dummy😂😂")
  92. end
  93. end,
  94. })
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211. local SeasonalTab = Window:CreateTab("🎃Seasonal🎄", 4483362458) -- Title, Image
  212. local SeasonalSection = SeasonalTab:CreateSection("Main")
  213.  
  214. local Button = SeasonalTab:CreateButton({
  215. Name = "Candy corn auto farm gui",
  216. Callback = function()
  217. loadstring(game:HttpGet("https://raw.githubusercontent.com/thanhdat4461/BaconScripterLua/main/Slap%20Battles%20Candy%20Farm.lua"))()
  218. end,
  219. })
  220.  
  221. local Toggle = SeasonalTab:CreateToggle({
  222. Name = "Teleport to Christmas event",
  223. CurrentValue = false,
  224. Flag = "Toggle1", -- 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
  225. Callback = function(Value)
  226. local player = game.Players.LocalPlayer
  227. local PlaceID = 15507333474 -- Replace with the target place ID
  228. game:GetService("TeleportService"):Teleport(PlaceID, player)
  229. end,
  230. })
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245. local Button = SeasonalTab:CreateButton({
  246. Name = "Auto collect gift gui",
  247. Callback = function()
  248. loadstring(game:HttpGet("https://raw.githubusercontent.com/thanhdat4461/BaconScripterLua/main/SlapBattles%26ChristmasEvents.lua"))()
  249. end,
  250. })
  251.  
  252. local Paragraph = SeasonalTab:CreateParagraph({Title = "", Content = "Credit to Bacon scripter for these. More stuff is getting added to this section soon.Christmas event had to be changed to a toggle but it still works"})
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420. Rayfield:Notify({
  421. Title = "Thanks for using jay hub!",
  422. Content = "Very awesome hub",
  423. Duration = 10,
  424. Image = 4483362458,
  425. Actions = { -- Notification Buttons
  426. Ignore = {
  427. Name = "Okay!😁",
  428. Callback = function()
  429. print("The user tapped Okay!")
  430. end
  431. },
  432. },
  433. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement