hi guys I create UserPanel
and create tab Achievements
plz can you give me code achievemets race
ScreenShot
Clients.lua
showCursor ( true )
Windowpanel = guiCreateWindow ( 400, 200, 550, 400, "Welcome To Your UserPanel ,", false )
tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, Windowpanel )
----------------------------------Achievements----------------------------------
tabAchievements = guiCreateTab( "Achievements", tabPanel )
----------------------------------Stats-------------------------------------------
tabStats = guiCreateTab( "Stats", tabPanel )
----------------------------------Maps-------------------------------------------
tabMaps = guiCreateTab( "Maps", tabPanel )
----------------------------------TopList-------------------------------------------
tabtoplist = guiCreateTab( "Toplist", tabPanel )
----------------------------------sendmoney-------------------------------------------
tabmoneysend = guiCreateTab( "Send Money", tabPanel )
----------------------------------Options-------------------------------------------
taboptions = guiCreateTab( "Options", tabPanel )
----------------------------------DoneTab-------------------------------------------
Server.lua
local thePlayer = getPlayerFromName ( "Dave" )
if thePlayer then
showCursor ( thePlayer, true )
if isCursorShowing ( thePlayer ) then
outputChatBox ( "Cursor is now showing for Dave." )
end
end
Plz help me