If anyone can help me to make a blacklisted item so no one in the game can get it. (F3x)
Or an auto ban script if it detect someone who got Item to ban them or when someone grab all the workspace.
I’m not very sure about the use case of this, but you can do something like this:
game.Players.PlayerAdded:Connect(function(player)
player.Backpack.ChildAdded:Connect(function(tool)
if playerShouldNotHaveTool then -- check however you want
player:Kick()
-- add player to ban list using datastores
end
end)
end)
Please do not use this category to ask for code to be made for you.