Hey, 
 
	this question requires proffesional lua programmer, so basically I've set a username on my script and more than 2 devices can use the username:
 
	local Usernames = {"MalekpwOnYT" , "Madareja123" , "Ashton23" , "Lukeon60fpsYT" , "waman" , "PacyhitsYT"}
 
	local MENU = gg.prompt ({
 
	    "Enter username"} , nil , {[1] = 'text'})
 
	if not MENU then return end
 
	for l , I in pairs(Usernames) do
 
	if MENU[1] == I then A= true end
 
	end
 
	if A ~= true then gg.alert("USERNAME NOT FOUND") return else gg.toast("✔USERNAME FOUND✔") end
 
	I want that if more than 2 devices enter the same username, the account will be disabled because of account sharing. It's hard to do but is there any way to do it?