So, I am working on a very “top-secret” project, but this small snippet of code won’t work.
disable = "idk"
disablecode = "code1234"
game.Players.PlayerAdded:Connect((function(plr)
if disable == disablecode then
print("End")
else
print("Incorrect code.")
game.Workspace:FindFirstChild("Terrain"):Destroy()
end
end))
Any Ideas why?