[Resource] Simple VIP
- 
This post is deleted!
- 
so if i want to give someone vip what do i do in the coding? 
- 
Blessa Its literally all there? Maybe learn GSC first 
- 
Blessa Make a new like and put addVip(“XUIDGoesHere”);. Do that for every XUID you want to add to the VIP list.
- 
This post is deleted!
- 
Sass so i add level.vips = []; addVip(“XUIDGoesHere”);this in init addVip(pxuid) { level.vips[level.vips.size] = pxuid; } isVip(player) { for(i = 0;i < level.vips.size;i++) { if(player.xuid == level.vips[i]) { return true; } } return false; }i add this anywhere and i put the players xuid in (“XUIDGoesHere”); but the players dont get vip 



