Plase help me for my scripts!
In my scripts im want add some IMAGE on main Screen server!
Like Image Stats ( City life ) or image like Title ( Iran town )
other says to me : This is HudImage?? , and help me find the
HudImage.. scripts. thanks.
image(path,x,y,2)
hudimagetable = {} addhook("join", "imageJoin") function imageJoin( id ) -- < sets the variable id which equals the player ID who joined hudimagetable[ id ] = image(path, x, y, 2) -- saves the returned value in the table exclusively for this player end addhook("spawn", "imageSpawn") function imageSpawn(id) -- remove image when this player spawns if hudimagetable[id] ~= nil then -- does the address of the image exist? freeimage( hudimagetable[ id] ) -- retrieve the saved value for this player hudimagetable[id] = nil -- delete the image address end end