Need Help Releasing my Game!

Heyo! So I recently just came back to development, and I’ve made an obby… Well, revamped an old one I made, it is nearly ready for release, but with a few bugs that I can’t figure out how to fix as well as add a badge feature, I would appreciate it sm if someone could add me and walk me through it or show me so I can fix it next time something similar happens!

What kind of badge feature are you looking for?

Hey! Thanks for replying, just something simple, you reach a new difficulty, you get a badge! So it’ll be every 25 stages you get the associated badge

It’s a difficulty chart obby if you’ve ever heard of one

Okay, so your going to want to create a part at your desired area to have the badge awarded. Then your going to want to add the following script into the part:

local badgeservice = game:GetService(“BadgeService”)
local id = (put your badge’s ID here)
script.Parent.Touched:Connect(function(hit)

if hit.Parent:FindFirstChild(“Humanoid”) then

local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
badgeservice:AwardBadge(plr.UserId, id)
end
end)

Sorry for the long wait to get a response, I was just busy figuring out how to make the script work! Let me know if it works for you.

LOL! All good, thanks for replying, I’ll try this out in a sec and lyk!

1 Like

Did it work? :face_with_monocle:

Also what’s the bugs you have in your game?