How can i make some sort of kill feed

i’d like to make something similar to this
image
but dont know where to start
how can i achieve this?

Is this using the Roblox chat?
I haven’t looked into it myself but it looks like you should be able to use TextChannel:DisplaySystemMessage: TextChannel | Documentation - Roblox Creator Hub

If not, you’d probably need to make your own gui for it and use that. My quick idea would be that you’d want a TextLabel that you can clone from your script, update the text, and insert it in as new text to display. There’d be a lot more work involved with that, though, so I’d suggest using the TextChannel method instead.

What I did in my game is add a “Creator” ObjectValue to the humanoid of any character I hit when attacking/shooting at them, and when those characters die check if their humanoid has an instance named ‘Creator’ in it. If there is an instance with that name, fire a remote event to every client with the value of the instance, and locally create a TextLabel that shows text (X killed Y).

1 Like

I ended up making a frame at the corner of the screen with a UIListLayout and added a textlabel in that frame for every kill


dont mind my terrible ui skills

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.