From b9c00e3f483b884cb6284abc32df5d0cb18e900a Mon Sep 17 00:00:00 2001 From: Brandon Sturgeon Date: Sat, 5 Nov 2022 16:05:53 -0700 Subject: [PATCH] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index f775c29..12f2ec8 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,14 @@ According to [this issue](https://github.com/Facepunch/garrysmod-requests/issues ## Installation Clone or download this repository into your `garrysmod/addons` folder and restart your server or game. + +## Use +```lua +require( "playerload" ) + +hook.Add( "PlayerFullLoad", "OnPlayerFullyLoaded", function( ply ) + net.Start( "example" ) + net.WriteString( "welcome :)" ) + net.Send( ply ) +end ) +```