hi im trying to make dialogue for my game and I cant seem to get it to continue can somebody help me? I've already made the gui code and everything im having trouble with making it continue on for more dialogue please help
`local textLabel = script.Parent
wait(0.1)
local function typewrite (object , text) for i = 1,#text,1 do object.Text = string.sub (text,1,i) wait(0.1) end end
typewrite (textLabel,"huh?") wait(5) script.Parent.Parent.Parent.Parent:Destroy()`