What I'm trying to do is change the value in the player through clicking the button.
function watch(player) script.Parent.watch.BackgroundTransparency = 0.2 script.Parent.play.BackgroundTransparency = 0.4 status.Text = 'You are: Watching' player.Parent.play.Value = false end script.Parent.watch.MouseButton1Click:connect(watch)
Nevermind. Fixed it.
function play() script.Parent.play.BackgroundTransparency = 0.2 script.Parent.watch.BackgroundTransparency = 0.4 status.Text = 'You are: Playing' script.Parent.Parent.Parent.Parent.Parent.play.Value = true end script.Parent.play.MouseButton1Click:connect(play)