How do I create checkpoints?

[Trade] Spready
Joined 20/06/2019
Posts 110
01:46 AM 22/06/2019
Does anyone know the scripts for making checkpoints or something? I'm trying to build an obby myself


Dino_rawrus
Joined 28/06/2019
Posts 1
04:22 PM 06/07/2019
no


Dez
Joined 14/01/2019
Posts 87
06:01 PM 09/07/2019
Ask Shops.


[name] M0a1
Joined 08/08/2019
Posts 4
03:38 AM 09/08/2019
oof


[PLUS] cheats
Joined 28/07/2019
Posts 692
04:20 AM 09/08/2019
You can add 1 to their score every time they finish a level and if they die you can just teleport them to the checkpoint (brick) named their score.


[PLUS] cheats
Joined 28/07/2019
Posts 692
04:22 AM 09/08/2019
let lava = Game.findBrickByName("lava") // this will "kill" them when they touch it

lava.touching((plr) => {
let checkpoint = Game.findBrickByName(plr.score);
if (checkpoint) {
plr.position = checkpoint.position
}
})

something like this

1