Reward for Players

Hi!

I wanted to give players a little reward when they finish the obby I’m working on.
Something they can use not only in the experience itself.
My first thought was a free t-shirt with “I survived the Temple of the Mad God” written on it.
But after doing some tesearch, I fund giving t-shirts for free seems to be pretty complicated it not impossible in Roblox.

Does anbody know a way to do it, or else, have an idea what else I could use instead?
Would of course also be important, that the item would not be available for players who didn’t play my experience.

Thanks a lot

5 Likes

You can use badges to award players by beating your obby. You can use this code for an example.

local BadgeID = "PutBadgeID"
local BadgeService = game:GetService("BadgeService")

script.Parent.Touched:Connect(function(hit)
	local Player = game.Players:GetPlayerFromCharacter(hit.Parent)
	if Player then
		print("BadgeAwarded")
		BadgeService:AwardBadge(Player.UserId, BadgeID)
	end
end)

If a player touches a Win Part, they will receive an badge.
Place the script in the part that you would like to award a badge when a player touches a part.

Hope this helps.

5 Likes

You could use Free UGC, but if you can’t do that, then badges would be your best bet.

2 Likes

I don’t think that’s possible.

1 Like

Thanks a lot!

Not as good as something the player could actually wear / use, but seems to be the best solution I can get, so thank you for pointing this out!

Thanks, can you like make my comment a solution?

I wanted to try it first, wich will take some time.
Won’t forget you.

Done
It worked fine.
Thank you so much!

Also a gear board is always fun! could keep players playing even after finishing!

What’s a “gear board”?
A toy where children can place colorful gears on a board comes to my mind…
Do you mean something like a leader board / high score list?
Sounds fun.

It is a board filled with weapons and such you click the board and then it gives you things like swords or guns to troll the people behind you on the obby!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.