Hi, so i wanna make a level select thing for my game, and i want to make it so your completed levels save.
but now i wanna make it so i can make teleport pads that only work when i have enough levels completed
0
You can save the amount of levels completed in an intValue, and just check it before teleporting the playersergeant_ranger184— 2y
seargant ranger
~~~~~~~~~~~~~~~~~
if levelcheck <= 1 then
levelcheck + 1
elseif levelcheck >= 1 then
print("player already has this point")
end
~~~~~~~~~~~~~~~~~
this no work