I am working on a new basketball game but I am new to ROBLOX Lua. Can someone give me tips with ROBLOX Lua and/or making a functional scoreboard?
Well, depending on how you script it you could have a central script with some values like
local TeamScore = { Team1 = 0 Team2 = 0 } function PointScored(Team, Points) local TeamVar = TeamScore[Team] TeamVar = TeamVar + tonum(Points) end