Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.66 KB | None | 0 0
  1. local lastLocation = nil
  2.  
  3. Citizen.CreateThread(function()
  4.     while true do
  5.         Citizen.Wait(2)
  6.        
  7.         x, y, z = table.unpack(GetEntityCoords(GetPlayerPed(-1), true))
  8.  
  9.         SetTextFont(1)
  10.         SetTextProportional(1)
  11.         SetTextScale(0.5, 0.5)
  12.         SetTextColour(255, 255, 255, 255)
  13.         SetTextDropshadow(0, 0, 0, 0, 255)
  14.         SetTextEdge(1, 0, 0, 0, 255)
  15.         SetTextDropShadow()
  16.         SetTextOutline()
  17.         SetTextEntry("STRING")
  18.  
  19.        
  20.  
  21.         AddTextComponentString(x)
  22.         DrawText(0.026, 0.68)
  23.     end
  24. end)
  25.  
  26. Citizen.CreateThread(function()
  27.     while true do
  28.         Citizen.Wait(2)
  29.        
  30.         x, y, z = table.unpack(GetEntityCoords(GetPlayerPed(-1), true))
  31.  
  32.         SetTextFont(1)
  33.         SetTextProportional(1)
  34.         SetTextScale(0.5, 0.5)
  35.         SetTextColour(255, 255, 255, 255)
  36.         SetTextDropshadow(0, 0, 0, 0, 255)
  37.         SetTextEdge(1, 0, 0, 0, 255)
  38.         SetTextDropShadow()
  39.         SetTextOutline()
  40.         SetTextEntry("STRING")
  41.  
  42.        
  43.  
  44.         AddTextComponentString(y)
  45.         DrawText(0.146, 0.68)
  46.     end
  47. end)
  48.  
  49. Citizen.CreateThread(function()
  50.     while true do
  51.         Citizen.Wait(2)
  52.        
  53.         x, y, z = table.unpack(GetEntityCoords(GetPlayerPed(-1), true))
  54.  
  55.         SetTextFont(1)
  56.         SetTextProportional(1)
  57.         SetTextScale(0.5, 0.5)
  58.         SetTextColour(255, 255, 255, 255)
  59.         SetTextDropshadow(0, 0, 0, 0, 255)
  60.         SetTextEdge(1, 0, 0, 0, 255)
  61.         SetTextDropShadow()
  62.         SetTextOutline()
  63.         SetTextEntry("STRING")
  64.        
  65.         AddTextComponentString(z)
  66.         DrawText(0.246, 0.68)
  67.     end
  68. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement