I’m making a round system in Roblox studio but I don’t know what I need for the round system can anyone pls help Thanks!!!
We’re gonne need more information to help you out, what do you mean by a round system?
Rounding Numbers?
Match Round System?
. . ect.
what kindof round system? a first to 30 points? a round that counts for 3 mins?
im trying to make a coin round system you have 30 seconds to collect as much coins as possible the player with the most coins wins
Here is a example I made for you:
local scores = {
["AC_Starmarine"] = 999,
["gamergirl7902"] = 998,
["SubToMintFoxOfficial"] = 43,
["fvazer"] = 154,
} -- example scores after each round
local bestscore = 0
local bestplayer = nil
for name, score in pairs(scores) do
if score > bestscore then
bestscore = score
bestplayer = name
end
end
-- now best player and bestscore will have the info about the person with the highest score.
Search the dev king tutorial. It helps a lot.
I watched the round system tutorial on the devking channel it did help but it’s not like that round system. When you enter an area it plays a round system and the round system what I want is to make a coin round system you have 30 seconds to collect as much coins as possible the player with the most coins wins.
Use the tutorial to teleport players to the round. Try this for collecting coins: Creating a Coin Collection System Add the coins to where you are teleported (round map) and then make the scripts for the round system. If you do this, it should work. Try making the script for whoever has the most coins on your own. Using only tutorials or relying on people, you will never learn. Just a tip.
i watched it but its what im looking for im looking for how to make a coin round system when u enter an area