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

How do you put music in your menu and when pressed it stops? [closed]

Asked by 9 years ago

So this is my script that works with my game menu

Player = game.Players.LocalPlayer
Menu = script.Parent
Play = Menu.Play
About = Menu.About
HasPressedPlay = false
Info = script.Parent.Info
Minimize = Info.Minimize
function MouseEnterPlayButton()
    Play.FontSize = "Size36"
    Play.BackgroundColor3 = Color3.new(0.1, 0.67, 0.71)
    Play.Size = UDim2.new(0.45, 0, 0.225, 0)
end

function MouseLeftPlayButton()
    Play.FontSize = "Size24"
    Play.BackgroundColor3 = Color3.new(0.54, 0.62, 0.71)
    Play.Size = UDim2.new(0.2, 0, 0.13, 0)
end

function MouseEnterAboutButton()
    About.FontSize = "Size36"
    About.BackgroundColor3 = Color3.new(0.1, 0.67, 0.71)
    About.Size = UDim2.new(0.45, 0, 0.225, 0)
end

function MouseLeftAboutButton()
    About.FontSize = "Size24"
    About.BackgroundColor3 = Color3.new(0.54, 0.62, 0.71)
    About.Size = UDim2.new(0.2, 0, 0.13, 0)
end

function PlayGame()
    if HasPressedPlay == false then
        for GuiMove = 1, 30 do
            if GuiMove <= 10 then
                Play.Position = Play.Position +UDim2.new(0.05, 0, 0, 0)
            end
            if GuiMove >= 20 then
                About.Position = About.Position +UDim2.new(0.05, 0, 0, 0)
            end
            wait()
        end


        Menu:remove()
    end
end

function MinimizeInfo()
    Info.Visible = false
end

function InfoPopup()
    if Info.Visible == false then
        Info.Visible = true
    else
        Info.Visible = false
    end
end

About.MouseButton1Down:connect(InfoPopup)
Minimize.MouseButton1Down:connect(MinimizeInfo)
Play.MouseLeave:connect(MouseLeftPlayButton)
Play.MouseEnter:connect(MouseEnterPlayButton)
About.MouseLeave:connect(MouseLeftAboutButton)
About.MouseEnter:connect(MouseEnterAboutButton)
Play.MouseButton1Down:connect(PlayGame)

Can someone help me with this?

0
I think it involves with something like play() time something :p UnitedKingdomRNS -4 — 9y

Closed as Too Broad by Wizzy011

This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.

Why was this question closed?