Advertisement
yeahhmonkey

Player1Hp

Oct 28th, 2016
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. Imports System
  2. Imports System.Drawing
  3. Imports System.Windows.Forms
  4. Imports GTA
  5. Imports GTA.Math
  6. Imports System.IO
  7. Imports System.Text
  8. Imports System.Math
  9.  
  10. Public Class Player1Hp
  11. Inherits Script
  12.  
  13. Public Property Scriptname As String
  14. Public Property ScriptVersion As String
  15. Public Property ScriptAuthor As String
  16.  
  17. Public Sub New()
  18. Me.Interval = 5
  19.  
  20. UI.Notify("~r~Player1Hp" + " ~w~by~w~ " + "~y~Yeahhmonkey~y~")
  21.  
  22.  
  23.  
  24. End Sub
  25.  
  26. Private Sub keyDown(ByVal sender As Object, ByVal e As KeyEventArgs) Handles MyBase.KeyDown
  27.  
  28.  
  29. Game.Player.Character.Health = 0
  30. Native.Function.Call(Native.Hash._SET_PLAYER_HEALTH_REGENERATION_RATE, 0)
  31.  
  32. End Sub
  33. Private Sub keyUp(ByVal sender As Object, ByVal e As KeyEventArgs) Handles MyBase.KeyUp
  34.  
  35. End Sub
  36. Private Sub general_tick(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Tick
  37.  
  38. End Sub
  39. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement