Advertisement
Guest User

VJ Base Exploit

a guest
Aug 18th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. local panel = {}
  2.  
  3. function mes_hack_vjsay()
  4. panel.frame = vgui.Create("DFrame")
  5. panel.frame:Center()
  6. panel.frame:SetSize(300,100)
  7. panel.frame:SetTitle("Made by Mestima <3")
  8. panel.frame:MakePopup()
  9.  
  10. panel.space = vgui.Create("DTextEntry", panel.frame)
  11. panel.space:SetPos(5,25)
  12. panel.space:SetSize(290,20)
  13. panel.space:SetText("Message")
  14.  
  15. panel.space_sound = vgui.Create("DTextEntry", panel.frame)
  16. panel.space_sound:SetPos(5,50)
  17. panel.space_sound:SetSize(290,20)
  18. panel.space_sound:SetText("Sound")
  19.  
  20. panel.butt = vgui.Create("DButton", panel.frame)
  21. panel.butt:SetPos(5,75)
  22. panel.butt:SetSize(290,20)
  23. panel.butt:SetText("SEND")
  24. panel.butt.DoClick = function()
  25. panel.msg = panel.space:GetValue()
  26. panel.snd = panel.space_sound:GetValue()
  27. net.Start("VJSay")
  28. net.WriteEntity(LocalPlayer())
  29. net.WriteString(panel.msg)
  30. net.WriteString(panel.snd)
  31. net.SendToServer()
  32. end
  33. end
  34.  
  35. concommand.Add("hack_say", mes_hack_vjsay)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement