of     1   

antton7375
#225816543Sunday, October 01, 2017 8:05 AM GMT

so i have made a textbutton ok and inside StarterPlayerScripts is a local script that i wanna enable (ive already disabled it) but i just cant figure it out how to work TextButtons or enable my script here's what i've made so far local SSJ2 = game.StarterPlayer.StarterCharacterScripts.SSJ2 textButton.MouseButton1Down:connect(function() SSJ2.Disabled = false end)
MetroFunctions
#225817169Sunday, October 01, 2017 8:38 AM GMT

local TextButton = ... -- Define Here local SSJ2 = game.StarterPlayer.StarterCharacterScripts.SSJ2 local Debounce = false -- Youll see why TextButton.MouseButton1Down:connect(function() if Debounce == false then SSJ2.Disabled = true Debounce = true elseif Debounce == true then SSJ2.Disabled = false Debounce = false end end)

    of     1