I am having problem to find the specific item in my game called “keyTorch”. This makes item get held by player if picked and also toggles the color of eye of totem pole but after it is picked i cant find a way to define this object. also, this game is parkour-type game so i have my model in serverstorage to spawn new one in case the player falls and is lost, but cant find a way to know if the torch is really lost or is held by player. sorry for my bad grammars.
03 | local totemEye 1 = script.Parent.eye 1 |
05 | local totoemEye 2 = script.Parent.eye 2 |
07 | local players = game.Players |
09 | local originalkeyTorch = game.ServerStorage:WaitForChild( "keyTorch" ) |
11 | local originalkeyPosition = originalkeyTorch.Handle.Position |
13 | local keyTorchLostDetector = script.Parent.keyLostDetector |
15 | local torchBackDetector = script.Parent.Parent.torch 1 Checker |
17 | local keynotDestroyed = true |
19 | local keystolen = false |
21 | keyTorchLostDetector.Touched:Connect( function (hit) |
23 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
25 | print ( "the visible key torch is about to get stealed by player" ) |
29 | if game.Workspace:FindFirstChild( "visiblekeyTorch" )~ = game.Workspace then |
31 | print ( "the key is not in original Place" ) |
35 | if [[--apperantly this part doesn`t work--]] game.Workspace:FindFirstChildOfClass( "Model" ):FindFirstChild( "visiblekeyTorch" ) or game.Workspace:FindFirstChildOfClass( "Model" ):FindFirstChild( "BackPack" ):FindFirstChild( "visiblekeyTorch" ) then |
37 | print ( "the key is in player" ) |
41 | print ( "the key is not found" ) |
45 | local cloneKey = originalkeyTorch:Clone() |
47 | cloneKey.Name = "visiblekeyTorch" |
49 | cloneKey.Parent = game.Workspace |
51 | print ( "the key was loaded" ) |