I am working on a Jeopardy game, and want to be able to be the only one to change the scores. How would I do this? I was thinking maybe making the text on the scoreboard copy whatever is typed in a startergui textbox that only I can see.
You could press f9 on your keyboard then go into server and type in this command,
‘’’lua
game.Players.yeeterboii14.leaderstats.Wins.Value = 1000
‘’’
You can also change the name out for whatever name you want the wins can be whatever currency you have and the value can be changed. But also if you use this command you will have to check how much they had before you use this command. So for example if they had 100 points before and you want to give them 1000 more points you will have to change the value to 1100.
If you were to create a live changing scoreboard. I’d recommend using RemoteEvents, the documentation can be found here
You were to make a RemoteEvent, then you would fire the event to all clients when you change the scoreboard value.
We had the same expectations.
@marino_dev was right
Actually, I’m developer too with great scripting language skills.
I sent data from server to clients with remote functions.
My function only fires ~1/25 seconds, To avoid any calls throwing on output with exhausted event call.