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

I made a script when a player joins a GUI is visible but it does not pop up?

Asked by 4 years ago
Edited 4 years ago

I made a script when a player joins a GUI is visible but the GUI does not pop up?

1local Frame = script.Parent
2game.Players.PlayerAdded:Connect(function()
3    Frame.Visible = true
4end)
0
Why not just leave it visible in studio? JailBreaker_13 350 — 4y
0
Is ScreenGui.Enabled == true? AntiWorldliness 868 — 4y

1 answer

Log in to vote
1
Answered by 4 years ago

I had a very similar problem. This is what I came up with make a part and then put it over spawn and edit the script.

01script.Parent.Touched:Connect(function(hit)
02    if hit.Parent:FindFirstChild("Humanoid") then
03        local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
04        if plr then
05            if not plr.PlayerGui:FindFirstChild("GUIClonedfromtouchblock") then
06                local clonedgui = script.Parent:FindFirstChildOfClass("ScreenGui"):Clone()
07                clonedgui.Name = "GUIClonedfromtouchblock"
08                clonedgui.Parent = plr.PlayerGui
09                wait(2)
10                script.Parent.TouchEnded:Connect(function(hit2)
11                    if hit == hit2 then
12                        game.Debris:AddItem(clonedgui,0)
13                    end
14                end)
15            end
16        end
17    end
18end)
Ad

Answer this question