Untitled

 avatar
unknown
lua
10 months ago
398 B
6
Indexable
local button = script.Parent
local ToggleMode = "Comenzar"
button.MouseButton1Click:Connect(function()
	if ToggleMode == "Comenzar" then
		ToggleMode = "Reiniciar"
		button.Text = "Reiniciar"
		script.Parent.Parent.TextLabel.LocalScript.Enabled = true
	
	else
		ToggleMode = "Comenzar"
		button.Text = "Comenzar"
		script.Parent.Parent.TextLabel.LocalScript.Enabled = false

	end
end)
Editor is loading...
Leave a Comment