local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
local Window = Rayfield:CreateWindow({
Name = "Jay hub - Slap battles🖐",
LoadingTitle = "Jay hub - Slap battles🖐",
LoadingSubtitle = "By J man",
ConfigurationSaving = {
Enabled = true,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "Big Hub"
},
Discord = {
Enabled = false,
Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
RememberJoins = true -- Set this to false to make them join the discord every time they load it up
},
KeySystem = true, -- Set this to true to use our key system
KeySettings = {
Title = "Jay hub key system",
Subtitle = "Key System",
Note = "Join the discord for the key",
FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
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")
}
})
local MainTab = Window:CreateTab("🔥Main🔥", 4483362458) -- Title, IImage
local MainSection = MainTab:CreateSection("Main")
local Toggle = MainTab:CreateToggle({
Name = "Slap aura",
CurrentValue = false,
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
Callback = function(Value)
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end,
})
local Toggle = MainTab:CreateToggle({
Name = "Infinite jump",
CurrentValue = false,
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
Callback = function(Value)
local InfiniteJumpEnabled = true
game:GetService("UserInputService").JumpRequest:connect(function()
if InfiniteJumpEnabled then
game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
end
end)
end,
})
local Button = MainTab:CreateButton({
Name = "Fly gui v3",
Callback = function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end,
})
local BadgesTab = Window:CreateTab("🎖Badges", 4483362458) -- Title, Image
local BadgesSection = BadgesTab:CreateSection("Main")
local Toggle = BadgesTab:CreateToggle({
Name = "Get firework without alchemist (need oven users help)",
CurrentValue = false,
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
Callback = function(Value)
game:GetService("ReplicatedStorage").Firework:InvokeServer()
game:GetService("ReplicatedStorage").AlchemistEvent:FireServer( "AddItem","Cake Mix")
game:GetService("ReplicatedStorage").AlchemistEvent:FireServer("EquipItem", "Cake Mix")
end,
})
local SeasonalTab = Window:CreateTab("🎃Seasonal🎄", 4483362458) -- Title, Image
local SeasonalSection = SeasonalTab:CreateSection("Main")
local Button = SeasonalTab:CreateButton({
Name = "Candy corn auto farm gui",
Callback = function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end,
})
local Toggle = SeasonalTab:CreateToggle({
Name = "Teleport to Christmas event",
CurrentValue = false,
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
Callback = function(Value)
local player = game.Players.LocalPlayer
local PlaceID = 15507333474 -- Replace with the target place ID
game:GetService("TeleportService"):Teleport(PlaceID, player)
end,
})
local Button = SeasonalTab:CreateButton({
Name = "Auto collect gift gui",
Callback = function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end,
})
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"})
Rayfield:Notify({
Title = "Thanks for using jay hub!",
Content = "Very awesome hub",
Duration = 10,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!😁",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
To embed this project on your website, copy the following code and paste it into your website's HTML: