i’m trying to make a new player logger, i want to detect every account created in roblox. are there any way to do this?
well, if you want to detect if the user is new, i made this code:
function detect(plr)
if plr.AccountAge <= 1 then -- Days
print("The player ".. plr.Name .. " Have " .. plr.AccountAge .. " Days.")
end
end
game.Players.PlayerAdded:Connect(detect) -- New player added in game
1 Like
i mean like a new user created in roblox, not a user joining my game
I don’t think it’s possible, but you could try to request things from the roblox site with httpsservice, you’d also need a proxy to do that.
yeah, which is why I mentioned that he would need a proxy to do it, easy way around that restriction.
1 Like
i didn’t want to use it with luau, i want to use it with javascript
Oops, I didn’t see that when replying
1 Like