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

How can i make a ScreenGUI pop up when a play collides with a brick?

Asked by
anti_uk -2
6 years ago

I want a notification to pop up whenever a player touches a brick, to tell them where they are in the map.

0
I suggest that you check out the Touch events of parts on the ROBLOX Wiki, as well as the visible properties of GUI's, the positioning properties of GUI's, and brick positioning. That is pretty much all you will need! MedievalBeast4 4 — 6y
0
Make an effort then you can be helped. Ultimate_Piccolo 201 — 6y
0
Use a touched event with the part then have the GUI in ServerStorage be cloned to the Player's PlayerGui AwesomeBuilder346 11 — 6y

2 answers

Log in to vote
-1
Answered by 6 years ago

I will give you the touched event

Part.Touched:connect(function()

End) -- Change Part to the part you want it to touch.

I am positive that is the event I am on mobile so I can not check

0
Also make sure End is end AwesomeBuilder346 11 — 6y
Ad
Log in to vote
-1
Answered by 6 years ago

No you make a local script and then put in

Part.Touched:connect(function()
      script.Parent.Frame.Visible = true
end)
0
I dont know abot the mao part tho User#16474 0 — 6y
0
aaron, You would have to clone the GUI into the player's screen or else it will pop up for everyone. AwesomeBuilder346 11 — 6y

Answer this question