Answered by
2_MMZ 1059
4 years ago
What you're gonna need to do is make a new ScreenGui
located inside of StarterGui
.
If you already have one, that's great. we can move on. Next, insert a Frame
inside of the StarterGui
. Edit that frame to whatever you want. Next, inside of the Frame, insert a TextLabel
. Customize it to however you want. Now let's get to the scripting part.
This either depends on if you want it to loop, becoming visible and invisible,
Use a click button,
Wait a certain amount of time for it to appear.
So we'll go with this stuff individually.
Loop invisible and visible:
1 | local frame = script.Parent |
Click script:, requires a TextButton
. If that is the case, insert a LocalScript
in the TextButton.
1 | local frame = script.Parent.Parent |
2 | script.Parent.MouseButton 1 Click:Connect( function () |
Wait for a certain amount of time script:
1 | local frame = script.Parent |
I hope any of these helped your case!