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

How Can I get a GUI to pop up only on one players screen?

Asked by 5 years ago

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.

0
you dont User#23365 30 — 5y
0
GUI objects only replicate to the client, so you dont need to do anything User#23365 30 — 5y
0
I want it not for them able to see then when I lick it they will et the GUI and then after 5 seconds it will go away Trooper_Toaster 0 — 5y
0
um can u speak more clearly? User#23365 30 — 5y
View all comments (4 more)
0
what do u mean by "it they will et the GUI" User#23365 30 — 5y
0
I want the target and only the target able to see the GUI Trooper_Toaster 0 — 5y
0
use bindable events for the client to communicate to the other client to do the task User#23365 30 — 5y
0
Ohh OK I get it VoidKeyword 111 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

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

local function onTouch(hit)
  Player:GetRankInGroup(2) == 255 then
Guiname.Visible = true

In the other case you were saying you could do a local script specify the gui

While true do
wait(5)
Workspace.StarterGui.Guinamehere.Visible = true
wait(5)
Workspace.StarterGui.Guinamehere.Visible = false
end
0
he wanted for the specified player name inside the textbox so that their GUI to disappear User#23365 30 — 5y
Ad

Answer this question