This is the script: 
 
	local charName = string.gsub(pedData[selectedChar].name, "_", " ") 
	        local nameWidth = dxGetTextWidth(charName, 1, Roboto32B)
 
	        local sx = 420 
	        local sy = 325 
	        local x = (screenX - sx) / 2 
	        local y = (screenY - sy) / 2
 
	 
	            dxDrawRectangle(x - 350, y, sx - 20, 350, tocolor(0, 0, 0, 100)) 
	            y = y + 500
 
	            dxDrawText("FearCity Roleplay", x + 50, y - 950 , sx - 20, y, tocolor(255, 255, 255), 1, JollyLodger22, "center", "center") 
	            y = y + 20
 
	            
 
	            --Cash-- 
	                     
	            local money = (getElementData(localPlayer, "char.Money") or 0)
 
	            dxDrawText("Készpénz: "..""..money.."$", x - 335 , y - 850 , sx - 20 , y, tocolor(255, 255, 255), 1, Lato, "left", "center") 
	            y = y + 20
 
	            --Money on bank--
 
	            dxDrawText("Banki Egyenleg:  ", x - 335, y - 800 , sx - 20, y, tocolor(255, 255, 255), 1, Lato, "left", "center") 
	            y = y + 20
 
	            --AccountID--This is the only one what is work: 
	            local accountId = getElementData(localPlayer, "acc.dbID")
 
	            dxDrawText("Account ID: "..""..accountId, x - 335, y - 750 , sx - 20, y, tocolor(255, 255, 255), 1, Lato, "left", "center") 
	            y = y + 20
 
	            --Played time--
 
	            dxDrawText("Játszott Percek:", x - 335, y - 700 , sx - 20, y, tocolor(255, 255, 255), 1, Lato, "left", "center") 
	            y = y + 20
 
	            --Premium money--
 
	            dxDrawText("Prémium Pont egyenleg:", x  - 335 , y - 650 , sx - 20, y, tocolor(255, 255, 255), 1, Lato, "left", "center")
 
	            y = y + 20   
 
	            --Job--
 
	            dxDrawText("Munkád:  ", x - 335, y - 600 , sx - 20, y, tocolor(255, 255, 255), 1, Lato, "left", "center") 
	            y = y + 20
 
	 
	     
	        dxDrawText(charName, 0, 0, screenX, screenY - 120, tocolor(255, 255, 255), 1, Roboto32B, "center", "bottom") 
	        dxDrawRectangle((screenX - nameWidth) / 2, screenY - 120, nameWidth, 2, tocolor(255, 255, 255))
 
	 
 
	script in picture: https://imgur.com/a/VVPE4h8
 
	script in the game: https://imgur.com/a/eFIEaRS
 
	 
 
	Please help me do this script.