How do i make it so that the player can get points by completing a round in another game?

So, i want the player to get money or points by completing a round in another game. How do i give that player a point in the lobby or in the starter game?

I’ve tried researching in the wiki but can’t find anything.

2 Likes

Are they in the same game? If so, the different places share the same datastore so you can just do it “normally”. If they’re in different games, Roblox has no built-in way of sharing data between them. It’s still possible by programming your own game server that has a database, and communicating with it using HttpService.

See this page:

didnt know about that!
I got a question though, do they function like a single game? or still 2 different games?

It’s one game. They are called places.

sweet stuff! I think i can do this now thanks lot

If you want to be hacky about it, you can use badges to save some data between two different games. Mind you this method is very limited and is definitely not preferable.

how do you use badges like that? i never made one…
edit: i dont think you can remove a badge from a player with a game script, can you?