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!