Update join.blade.php

This commit is contained in:
Thomas G 2022-07-12 20:01:11 +10:00
parent 6b2879fc34
commit 390dab983f
1 changed files with 5 additions and 5 deletions

View File

@ -105,11 +105,6 @@ pcall( function()
end
end)
if <?php echo $username; ?> == "Guest " .. <?php echo $randName; ?> then
showErrorWindow("You are not authenticated. (ID: 400)", "Kick", "Kick")
error("oops! you have to put your cd in your computer.")
end
client = game:GetService("NetworkClient")
visit = game:GetService("Visit")
@ -124,6 +119,11 @@ function setMessage(message)
end
end
if "<?php echo $username; ?>" == "Guest " .. tostring(<?php echo $randName; ?>) then
setMessage("You are not authenticated. (ID: 400)", "Kick", "Kick")
error("oops")
end
function showErrorWindow(message, errorType, errorCategory)
game:SetMessage(message)
end