You can use touched and touch ended events to trigger GUIs
Example:
02 | local part = script.Parent |
03 | local gui = game:GetStorage( "ReplicatedStorage" ):WaitForChild( "TouchGui" ) |
06 | local function Touch(tpart) |
08 | local character = part:FindFirstAncestorWhichIsA( "Model" ) |
10 | local player = game:GetService( "Players" ):GetPlayerFromCharacter(character) |
11 | if player and gui then |
12 | local exists = player:WaitForChild( "PlayerGui" ):FindFirstChild(gui.Name) |
14 | local clone = gui:Clone() |
15 | clone.Parent = player:WaitForChild( "PlayerGui" ) |
23 | local function UnTouch(tpart) |
26 | local character = part:FindFirstAncestorWhichIsA( "Model" ) |
28 | local player = game:GetService( "Players" ):GetPlayerFromCharacter(character) |
29 | if player and gui then |
30 | local exists = player:WaitForChild( "PlayerGui" ):FindFirstChild(gui.Name) |
41 | part.Touched:Connect(Touched) |
42 | part.TouchEnded:Connect(UnTouched) |