Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

All my Other Functions Work But for some reason 2 wont but they are not incorrect?

Asked by 9 years ago

--MarioLogo And NintendoToSega wont Work

wait(1) player = game.Players.LocalPlayer button = script.Parent

function teleportToArena() torso = player.Character.Torso torso.CFrame = game.Workspace.MarioTP.CFrame end

button.MouseButton1Click:connect(teleportToArena)

local MarioChar = player.PlayerGui.ChooseCharacter.MarioChar

function onClick()
    if MarioChar.Visible then
        MarioChar.Visible = false
    end
end

button.MouseButton1Click:connect(onClick)

player = game.Players.LocalPlayer

local ChooseCharacter = player.PlayerGui.ChooseCharacter.ChooseCharacter

function onClick2() if ChooseCharacter.Visible then ChooseCharacter.Visible = false end end

button.MouseButton1Click:connect(onClick2)

local MarioName = player.PlayerGui.ChooseCharacter.MarioName

function onClick3() if MarioName.Visible then MarioName.Visible = false end end

button.MouseButton1Click:connect(onClick3)

local NintendoToSega = game.StarterGui.ChooseCharacter.NintendoToSega

function onClick4() if NintendoToSega.Visible then NintendoToSega.Visible = false end end

button.MouseButton1Click:connect(onClick4)

local MarioName = game.StarterGui.ChooseCharacter.MarioName

function onClick5()
    if MarioName.Visible then
        MarioName.Visible = false
    end
end

button.MouseButton1Down:connect(onClick5)

local MarioLogo = game.StarterGui.ChooseCharacter.MarioLogo

function onClick5()
    if MarioLogo.Visible then 
        MarioLogo.Visible = false
    end
end

button.MouseButton1Down:connect(onClick5)

Answer this question