Advertisement
Guest User

Untitled

a guest
Aug 19th, 2021
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.Interval = 5000 -- Interval of time between showing each tutorial location
  4.  
  5. Config.Locations = {
  6. [1] = {
  7. PlayerPos = vector3(295.75, 182.08, 130.88),
  8. CamPos = vector3(269.82, 129.41, 125.48),
  9. Message = 'Welcome to the city',
  10. },
  11. [2] = {
  12. PlayerPos = vector3(-604.84, 23.77, 49.98),
  13. CamPos = vector3(-599.68, -35.4, 79.58),
  14. Message = 'Welcome to the city 2',
  15. }
  16. }
  17.  
  18. function Notification(msg) -- Input your notification system (Mythic notifs, ESX, T-notify, mosh_notify etc)
  19. print('notif sent')
  20. TriggerEvent('QBCore:Notify', msg) -- Default QB notifications
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement