How would I make a script for when a name is entered into the TEXTBOX and a button is pressed only the name in the TEXTBOX will have the gui.
Well You could do a local script where when you touch a brick the gui appears by doing this:
Make sure the script is local
1 | local function onTouch(hit) |
2 | Player:GetRankInGroup( 2 ) = = 255 then |
3 | Guiname.Visible = true |
In the other case you were saying you could do a local script specify the gui
1 | While true do |
2 | wait( 5 ) |
3 | Workspace.StarterGui.Guinamehere.Visible = true |
4 | wait( 5 ) |
5 | Workspace.StarterGui.Guinamehere.Visible = false |
6 | end |