So I made a boss and in 20 seconds I want it to say something without having to click some stupid dialog How would I do this?
Ok, so assuming you want the classic roblox dialog to appear over the head of your boss without having to click it first. I may have a solution
So basically, instead of using dialog, you can use the Chat:Chat() function.
Of course you have to fill out the parameters, so here's a script
1 | local CS = game:GetService( "Chat" ) |
2 | local Head = Boss.Head --add your own path to the boss's head |
3 |
4 | CS:Chat(Head, "Your Dialog Here" ,Enum.ChatStyle.Red) --you change Red to either Green, Blue or White |
https://developer.roblox.com/en-us/api-reference/function/Chat/Chat