Can anyone help me fix this script?

Hiya Developers!

I seem to be getting this error on line 133, here is the code

script.Parent.Touched:connect(onTouched)

“On Touched” has the error line stating "Expected “end” (to close to then at line 75),got ; did you forget to close of "“then at line 121?”

Here the lines around 121:

-- Tool 10 Config  
if ToolNumber1 == 10 then 
local TimeBomb = game.ReplicatedStorage.Tools:WaitForChild("Time Bomb")
[LINE 121] if hit.Parent:findFirstChild("Humanoid") and game.Players:GetPlayerFromCharacter(hit.Parent) ~= nil then 
[END LINE 121]
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
local Clone = TimeBomb:Clone()			
Clone.Parent = player.Backpack 
						
end
end
													
end
end
												
end

Please help, thanks!

Do you indent your sections of script for every if statement?
It may help, since it seems that the troubleshooter is trying to find a close for a if...then statement on line 75 of your script.

Just send the whole script, because you forgot an end somewhere.