of     1   

PrinceDoodlebob
#141329832Thursday, July 24, 2014 12:49 AM GMT

Player = game.Players.LocalPlayer Menu = script.Parent Play = Menu.Play About = Menu.About HasPressedPlay = false function MouseEnterPlayButton() Play.FontSize = "Size36" Play.BackgroundColor3 = Color3.new(0.54,0.62,0.7) 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.7) Play.Size = UDim2.new(0.3,0,0.1,0) end function MouseEnterAboutButton() About.FontSize = "Size36" About.BackgroundColor3 = Color3.new(0.54,0.62,0.7) 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.7) About.Size = UDim2.new(0.3,0,0.1,0) end function PlayGame() if HasPressedPlay == false then for GuiMove = 1, 30 do if Guimove <= 20 then Play.Position = UDim2.new(0.05,0,0,0) end if GuiMove >= 10 then About.Position = UDim2.new(0.05,0,0,0) end wait() end Menu:remove() end end About.MouseLeave:connect(MouseLeftAboutButton) About.MouseEnter:connect(MouseEnterAboutButton) Play.MouseLeave:connect(MouseLeftPlayButton) Play.MouseEnter:connect(MouseEnterPlayButton) Play.MouseButton1Down:connect(PlayGame)
PrinceDoodlebob
#141329891Thursday, July 24, 2014 12:50 AM GMT

Everything works but I'm trying to make it if I click the play Gui it will delete the menu but it doesn't?
PrinceDoodlebob
#141330685Thursday, July 24, 2014 12:58 AM GMT

help
PrinceDoodlebob
#141332260Thursday, July 24, 2014 1:14 AM GMT

qq

    of     1