Hello everyone, in this video I will show you how to make a Dialogue. Thanks for watching this video I hope this helps! If you care please leave a comment, like and subscribe! Ty❤️
Script:
script.Parent.Triggered:Connect(function(plr)
plr.PlayerGui.Dialogue1.Frame.Visible = true
wait(1) ---- how long you have to wait for the frame to go invisible
plr.PlayerGui.Dialogue1.Frame.Visible = false
wait(1)
-- you can add your own frame after the "wait(1)"
you can add your own frame by typing: plr.PlayerGui.Dialogue1.Frame.Visible = true/false
-- delete the line below if you dont want the player to talk to the character again
script.Parent:Destroy()
end)