Im making a keystroke ability that resembles the game “Black Magic” and I want to add fake chat bubbles on certain attacks just like the game. Only issue is that I have zero idea how to add them.
example:
if anyone can tell me what I can use to script this that would be amazing, thanks in advance!
Hey, perhaps you could use the roblox chatservice, here’s an example of how it is used
local ChatService = game:GetService("Chat") local Character = script.Parent ChatService:Chat(Character.Head, "Test", Enum.ChatColor.Red)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.