Here is my script
01 | local Object = game.Lighting.NPC:Clone() |
02 | local cloneMade = script.Parent.Parent.Parent.cloneDoingMaze |
03 |
04 | function startNPC() |
05 | Object.Parent = game.Workspace |
06 | end |
07 |
08 | script.Parent.Touched:Connect( function () |
09 | if cloneMade = = false then |
10 | startNPC() |
11 | wait( 0.1 ) |
12 | cloneMade = true |
13 | else |
14 | script.Parent.Parent.Name = "There is already an npc doing the maze" |
15 | end |
16 | end ) |