Guest User

Untitled

a guest
Dec 13th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function drawTxt(text, font, centre, x, y, scale, r, g, b, a)
  2. SetTextFont(font)
  3. SetTextProportional(0)
  4. SetTextScale(scale, scale)
  5. SetTextColour(r, g, b, a)
  6. SetTextDropShadow(0, 0, 0, 0, 255)
  7. SetTextEdge(1, 0, 0, 0, 255)
  8. SetTextDropShadow()
  9. SetTextOutline()
  10. SetTextCentre(centre)
  11. SetTextEntry("STRING")
  12. AddTextComponentString(text)
  13. DrawText(x, y)
  14. end
  15.  
  16. drawTxt('Tryk ~g~E~s~ for at tilgå banken', 0, 1, 0.5, 0.8, 0.6, 255, 255, 255, 255)
Advertisement
Add Comment
Please, Sign In to add comment