Advertisement
TheVideoVolcano

GTA V Scripthookvdotnet Basic Script Template

Sep 22nd, 2018
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.50 KB | None | 0 0
  1. Imports System.Windows.Forms
  2. Imports System
  3. Imports GTA
  4. Imports GTA.Native
  5.  
  6.  
  7. Public Class Basic_Script
  8.  
  9.     Inherits Script
  10.  
  11.     Public Sub New()
  12.  
  13.         Interval = 10
  14.      
  15.     End Sub
  16.  
  17.     Private Sub OnTick(sender As Object, e As EventArgs) Handles MyBase.Tick
  18.  
  19.     End Sub
  20.  
  21.     Private Sub onKeyDown(sender As Object, e As KeyEventArgs) Handles MyBase.KeyDown
  22.  
  23.     End Sub
  24.  
  25.     Private Sub onKeyUp(sender As Object, e As KeyEventArgs) Handles MyBase.KeyUp
  26.  
  27.     End Sub
  28.  
  29. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement