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

How do I make script that opens up a gui I touch a brick and once I off the part the gui goes away?

Asked by 5 years ago
Edited 5 years ago
01-- I made this script, it is a server script
02-- It does NOT work, I did many attempts
03-- I want the gui only to appear for the player that touched the part
04-- I do not know if this should be a localscript or serverscript
05-- Please help
06 
07if script.Parent.Touched == true then
08    script.Parent.keyGui:DuplicateIntoPlayerGui()
09end
10if script.Parent.Touched == false then
11    while true do(nothing)
12        game.Nothing = true
13    end
0
keep the gui disabled until you touch it and when you leave the part it disables? sean_thecoolman 189 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

You can use touched and touch ended events to trigger GUIs Example:

01-- LocalScript
02local part = script.Parent
03local gui = game:GetStorage("ReplicatedStorage"):WaitForChild("TouchGui")
04local last = nil
05 
06local function Touch(tpart)
07    if tpart then
08        local character = part:FindFirstAncestorWhichIsA("Model")
09        if character then
10            local player = game:GetService("Players"):GetPlayerFromCharacter(character)
11            if player and gui then
12                local exists = player:WaitForChild("PlayerGui"):FindFirstChild(gui.Name)
13                if notexists then
14                    local clone = gui:Clone()
15                    clone.Parent = player:WaitForChild("PlayerGui")
View all 42 lines...
0
Thanks. GamingWithFlight 80 — 5y
0
You're very welcome. LucarioZombie 291 — 5y
Ad

Answer this question