Very Easy Issue

Honestly If I thought and tried for like 30 minutes I could probably figure this out. Though I have barley any patience due to I’ve had a rough time developing my game. Anyways, I want to make it so that when you first join the game, my shop GUI doesn’t appear. What could I add to my script for opening the shop gui so that it won’t open when someone joins.


game.Workspace.Shop1.Touched:Connect(function(hit)
	if hit then
		script.Parent.Shop.Frame.Visible=true
	end
end)

Just uncheck the frames Visible property in the properties pane.

Or just set it to false as the first line of your script.

1 Like

Oh ya. Should have thought of that.

1 Like