I made a script when a player joins a GUI is visible but the GUI does not pop up?
1 | local Frame = script.Parent |
2 | game.Players.PlayerAdded:Connect( function () |
3 | Frame.Visible = true |
4 | end ) |
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.
01 | script.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 (hit 2 ) |
11 | if hit = = hit 2 then |
12 | game.Debris:AddItem(clonedgui, 0 ) |
13 | end |
14 | end ) |
15 | end |
16 | end |
17 | end |
18 | end ) |