My Scripts Only Work One Time

help with script
the scripts only works once after second try. it doesn’t work. if i replay it still is the same

script1:

script.Parent.ClickDetector.MouseClick:Connect(function()
	game.Workspace.Tsunami.Tweener9.Disabled = false
	wait(6)
	script.Disabled = true
	script.Parent.Script3.Disabled = false
	game.Workspace.Tsunami.Tweener9.Disabled = true
end)

script3:

script.Parent.ClickDetector.MouseClick:Connect(function()
	game.Workspace.Tsunami.Tweener11.Disabled = false
	wait(6)
	script.Disabled = true
	script.Parent.Script4.Disabled = false
	game.Workspace.Tsunami.Tweener11.Disabled = true
end)

script4:

script.Parent.ClickDetector.MouseClick:Connect(function()
	game.Workspace.Tsunami.Tweener13.Disabled = false
	wait(6)
	script.Disabled = true
	script.Parent.Script5.Disabled = false
	game.Workspace.Tsunami.Tweener13.Disabled = true
end)

script5:

script.Parent.ClickDetector.MouseClick:Connect(function()
	game.Workspace.Tsunami.Tweener15.Disabled = false
	wait(6)
	script.Disabled = true
	script.Parent.Script.Disabled = true
	game.Workspace.Tsunami.Tweener15.Disabled = true 
end)

any help will work and post with the script btw no errors

This is because you are doing “script.Disabled = true”, if you remove that then it will work a second time.

2 Likes