Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. DTextEntryBox
  2. ----------------
  3. |1849, 248, 681|
  4. ----------------
  5.  
  6. local vectorbullshit = DTextEntryBox:GetText()
  7. That set of text above. Is now our vector coordinates.
  8.  
  9. print(vectorbullshit)
  10. We'd now get: 1849, 248, 681.
  11.  
  12. netstream.Hook("MortarFire", function(bullshit, ent, vector)
  13. Now we see we have our netstream hook. But how do I transfer over vectorbullshit? If I were to print "vector" withint he Netstream Hook, it would return nil if I am correct. As it holds no data other than the word "vector" as an argument. Would I make it into this using our local vectorbullshit?:
  14. netstream.Hook("MortarFire", function(bullshit, ent, vectorbullshit)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement