Aversus
|
  |
| Joined: 26 Oct 2013 |
| Total Posts: 11013 |
|
|
| 18 Mar 2015 01:38 PM |
When you click the brick a pop up GUI appears and says whatever text you want, and the GUI stays on your screen until you X it out?
I cant find any in Free Models. One would be greatly appreciated. |
|
|
| Report Abuse |
|
|
|
| 18 Mar 2015 01:49 PM |
Easiest to clone a gui to the player.
Make the GUI in StarterGui first, then put it in the brick you want to click.
Then put a script in the brick, with a clickdetector as well and put this in the script.
GUI = script.Parent.ScreenGui script.Parent.ClickDetector.MouseClick:connect(function(click) GUI:clone().Parent = click.PlayerGui end) |
|
|
| Report Abuse |
|
|
|
| 18 Mar 2015 01:50 PM |
you can do it without a ClickDetector by using a localscript to get the players mouse.
mouse = game.Players.LocalPlayer:GetMouse()
mouse.Button1Down:connect(function()
end) |
|
|
| Report Abuse |
|
|