I'm making an object that when clicked, opens a gui with some animated text. This is my code so far:
1 | script.Parent.MouseClick:Connect( function () |
2 | local gui = script.Parent.Parent.talk:Clone() |
3 | gui.Parent = game.StarterGui |
4 | end ) |
The typing animation is in the Gui, but the main problem is that the explorer shows that the Gui is cloned to StarterGui, but i can't see it in game.