Made this GUI thing a few years ago, now I dont really remeber how it works, could use to help on what to post here to get the best help from you guys aswell.
Just put this into a normal script and put the GUI that you want into this script. And then insert this script along with the GUI in the seat and you're good to go. I hope this helps. :)
01 | enabled = true |
02 | i = 0 |
03 |
04 | function OnTouch(hit) |
05 | if not enabled then |
06 | return |
07 | end |
08 | i = 1 |
09 | local h = hit.Parent.Name |
10 | for i,v in pairs (game.Players:GetPlayers()) do |
11 | if h = = v.Name then |
12 | s = script.Gui:clone() -- change this to your gui name |
13 | s.Parent = v.PlayerGui |
14 | enabled = false |
15 | end |