So what I have planned is that when you click one of the buttons in game, it will uncheck a disabled script in StarterGui. If pressed Fall, the fall script will be unchecked and you should be falling and the fly script is checked. If pressed Fly, the fly script will be unchecked an you should be flying and the fall script is checked. I think I am close to an answer but I can't seem to find it.
function onClick() script.Parent.Parent.Fall.Selected = true script.Parent.Parent.Fly.Selected = false if script.Parent.Parent.Fall.Selected == true then game.StarterPack.Skydive.Selected = false script.Parent.Text = "On" end if script.Parent.Parent.Fly.Selected == false then game.StarterPack.Fly.Selected = true script.Parent.Parent.Fly.Text = "Off" end end script.Parent.MouseButton1Click:connect(onClick)
It will not work when I press the button. Please help me find a solution for it.
The word "mouse" should be in the ().