How would I do something like this
Not the actually UI aspect, but detecting when a player makes a good pass or an assist or maybe gets stolen from or makes a shot? Thanks!
If you need more informational please don’t hesitate to ask I’m having lots of issues with this
Well if you are already tracking what would add/subtract from their grade couldn’t you just do a point system and give them a grade based off that? Such as
local Points = {
"Three Pointer" = 10;
"Good Shot" = 5;
"Half Court" = 50;
}
and then you’d add all the points together and give them a score off that.
(the points I am using here are not actual basketball points it’s only for the grading system.)
1 Like
Yes, I feel so stupid now! Haha
1 Like