#very random idea i got but might be good for some games to prevent raiding or whatever

1 messages · Page 1 of 1 (latest)

quick scroll
#

Easy. Just use a plugin like that:

return function(Vargs)
    local Service = Vargs.Service
    local KickMessage = "Your account is not verified."
    local VerifiedAssets = {102611803, 93078560, 1567446, 18824203}    

    local function PlayerAdded(Player: Player)
        local Verified = false
        for _, Asset in ipairs(VerifiedAssets) do
            if not Verified then
                Verified = Service.CheckAssetOwnership(Player, Asset)
            end
        end

        if not Verified then
            Player:Kick(KickMessage)
        end
    end
    Service.Events.PlayerAdded:Connect(PlayerAdded)
end
upper kestrel
#

players who deleted their verified hats from their inventories: simp

narrow sparrow
#

Not really, some people have other verified hats.

hollow summit
#
quick scroll
#

anyways, its better to do multiple checks rather than only checking for those assets like Atherum module:
https://devforum.roblox.com/t/1917423

narrow sparrow
#

?

quick scroll
#

its pretty configurable actually.

narrow sparrow
#

I'm not OP, I never said I wanted to check for verified users.

quick scroll
#

holy fu**

#

confusing moment

narrow sparrow
#

I think detecting alts is pretty pointless.

open aurora