local BadgeService = game:GetService("BadgeService")
local BadgeID = 2124836318 -- Replace with your actual badge ID
script.Parent.Touched:Connect(function(hit)
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
if player and not BadgeService:UserHasBadgeAsync(player.UserId, BadgeID) then
BadgeService:AwardBadge(player.UserId, BadgeID)
end
end)
Rayfield:Notify({
Title = "Jade hub loaded!",
Content = "WARNING:Don't abuse it or it can cause a ban!",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Thanks Jade!",
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: