Deleted
You could use the following hooks to make a scoreboard:
[lua]
– Use these two functions to show and hide your gui
function GM:ScoreboardShow()
GUI:SetVisible( true )
end
function GM:ScoreboardHide()
GUI:SetVisible( false )
end
[/lua]