local Players = game:GetService("Players")
local player = Players.LocalPlayer
Players.PlayerAdded:Connect(function(player)
wait(0.2)
local leaderstats = player:WaitForChild("leaderstats")
local plot1 = workspace.plot1
local plot2 = workspace.plot2
print("finding plot")
if plot1.Istaken.Value == true then
print("plot 1 taken trying plot 2")
if plot2.Istaken.Value == true then
print("plot 2 taken")
if plot1.Istaken.Value == false then
print("giving player plot 1")
player.leaderstats.plot.Value += 1
print("gave player plot 1")
if plot2.Istaken.Value == false then
print("giving player plot 2")
player.leaderstats.plot.Value += 2
print("gave player plot 2")
else
print("all plots are taken how tf are you here")
print("found plot")
end
end
end
end
end)
it just stops after finding plot