In Roblox football games, you usually can’t change the score by editing the live match manually unless you’re the game creator or have admin/server access. For regular players, the score is controlled by the game’s rules, not by a client-side setting.

What you can do

  • Score points in-game: Run plays, complete passes, score touchdowns/goals, and the scoreboard updates automatically.
  • Change scores as a developer/admin: In your own Roblox experience, you can update leaderstats or scoreboard values from the server, which then reflects for everyone.
  • Use commands only if allowed: Some developer/admin setups let trusted users change values through server commands, but that only works in games you control or have permission to manage.

For Universe Football

If you mean Universe Football / NFL Universe Football , there’s no normal in-game setting for players to manually edit the score during a match. Tutorials and community posts focus on gameplay, controls, and strategy rather than score editing, which suggests scoring is meant to happen through play, not direct adjustment.

For your own Roblox game

If you’re building a game and want a scoreboard that changes live for everyone, the usual approach is:

  1. Store the score on the server.
  2. Update the score value when a team scores.
  3. Broadcast the new value to all players so the UI stays synced.

Example

A server-side score update in a Roblox game can look like changing a value such as a team’s points, then letting the scoreboard UI read that value for all players.

TL;DR: In Universe Football, you generally can’t directly change the score as a player; only the game’s server or developers can do that, while normal players can only change it by scoring in gameplay.