Update README.md

This commit is contained in:
Brandon Sturgeon 2022-11-05 16:05:53 -07:00 committed by GitHub
parent b167afc7ea
commit b9c00e3f48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 )
```