I need to make a tool that opens a ScreenGui when its equipped.
I’ve tried looking for scripts by other developers and even tutorials online, but nothing I’ve found has come close to what I need.
(I’m not looking for a scripter to do the work for me. I want to LEARN how to do this so I can do it again in the future if needed.)
Optional: I would also prefer that the player’s arm doesn’t raise when the tool is equipped, since the tool is going to be invisible. I’m not sure how difficult this would be to implement, so it’s fine if it gets left out.
It depends on how you want it done you can clone a GUI with a client or local script in place it in the Player’s GUI then remove on a de-equip function or just make it visible.
If you are trying to make a screen gui appear called script, you are doing it right. If you are trying to enable/disable a script. Its the opposite function name as gui.
Gui.Enabled = true--Gui Will Appear
Gui.Enabled = false--Gui Will Not Appear
Script.Disabled = false--Script Will Run
Script.Disabled = true--Script Will Not Run