How to create a game menu with working buttons?

Hello! I need help with creating a menu with working buttons, I’m currently working on a sorta csgo fps game. I need help creating the Panorama menu. If anyone have tips/tutorials on how to get started that would be great!

3 Likes

Like a menu with TextButtons?

If it’s for that, every text button start with a local script inside of it.
And this in the script:

scrpit.Parent.MouseButton1Click:Connect(function()
--code here
end)

MouseButton1Click can variate by:
MouseButton2Click
MouseEnter
MouseLeave
MouseMoved
Etc

1 Like

Yeah, or just buttons in general. 2f5de755-9158-4095-aea5-e482523d75c4
something like that…

1 Like

You would need to tween the Guis for a panoramic view, although I’m not sure if that’s what you mean.