An antitheftI made. If someone steals your game, it kicks everyone. To make it work, just change 'ExpectedID' from 0, to whatever your game ID is.
-- Made by Waffloid!
repeat wait() until #game.Players:GetPlayers() == 1
ID = game.PlaceId
ExpectedID = 0 -- Change this to your game ID
if ID == ExpectedID then
print("This game was not copied.")
else
for i,v in pairs(game.Players:GetPlayers()) do
v:Kick()
end
end
~Swagilitious and not Nutricious~ |