of     1   

TheGuyDudeDude
#218863742Wednesday, June 14, 2017 11:21 AM GMT

I've been trying for ages but I can't get it to work! This is the script I'm using: function onTouch(hit) if hit.game.StarterGui.ScreenGui.Enabled = true end
TheGuyDudeDude
#218864217Wednesday, June 14, 2017 11:40 AM GMT

bump
TheGuyDudeDude
#218864642Wednesday, June 14, 2017 12:00 PM GMT

bUmp
BleakGravity
#218865089Wednesday, June 14, 2017 12:21 PM GMT

GUI = YourGui script.Parent.Touched:connect(function (hit) if hit.Parent and game.Players:FindFirstChild(hit.Parent.Name) then Play = game.Players[hit.Parent.Name] if Play:FindFirstChild("PlayerGui") and not Play.PlayerGui:FindFirstChild(GUI.Name) then GUI:Clone().Parent = Play.PlayerGui end end end) -- Little bit of Bleak in your life --
TheGuyDudeDude
#218865226Wednesday, June 14, 2017 12:27 PM GMT

Doesn't work.
BleakGravity
#218865331Wednesday, June 14, 2017 12:31 PM GMT

Did you change the name of the GUI and all? -- Little bit of Bleak in your life --
TheGuyDudeDude
#218865475Wednesday, June 14, 2017 12:37 PM GMT

This is what my script looks like: GUI = ScreenGui script.Parent.Touched:connect(function (hit) if hit.Parent and game.Players:FindFirstChild(hit.Parent.Name) then Play = game.Players[hit.Parent.Name] if Play:FindFirstChild("PlayerGui") and not Play.PlayerGui:FindFirstChild(GUI.Name) then GUI:Clone().Parent = Play.PlayerGui end end end)
BleakGravity
#218865725Wednesday, June 14, 2017 12:48 PM GMT

Put the GUI in lighting and change the first line to GUI = game.Lighting.ScreenGui -- Little bit of Bleak in your life --
TheGuyDudeDude
#218865823Wednesday, June 14, 2017 12:52 PM GMT

Thanks!
BleakGravity
#218865955Wednesday, June 14, 2017 12:58 PM GMT

All good -- Little bit of Bleak in your life --
TheGuyDudeDude
#218866147Wednesday, June 14, 2017 1:06 PM GMT

I forgot to ask but is there a way to make the GUI disappear after 3 seconds?
BleakGravity
#218867214Wednesday, June 14, 2017 1:51 PM GMT

Wait 3 then hide it? -- Little bit of Bleak in your life --

    of     1