How would I Include events to be tracked using Google analytics, I really can't figure this on out, I can't even begin to think about the proper way to do this, any help Would be appreciated.
1 | --for when a player joins, this can be exchanged for any event |
2 |
3 | game.Players.ChildAdded:connect( function (p) |
4 | url = --google analytics form url |
5 | game:GetService( "HttpService" ):GetAsync(url) |
6 | end ) |
I simply got this from the ROBLOX wiki.