Npc Talk sound effect?

(Pls let me know if this is in the wrong topic)

Do anybody know if there is a like a Roblox Npc Talking Sound effect(Like how they have in Bloxburg or any games that use Npc’s to talk)
I’ve tried searching for a while but can’t find one.

2 Likes

I used this for tutorial for my older unreleased game. It’s pretty easy to use. Then you can use this code to make it play it every word.

local function typing(text,speed)
	for i = 1,#text,1 do
		TextGUI.Text = string.sub(text,1,i)
		script.Parent.Sound.Blip:Play()
		task.wait(1/speed)
	end
end
1 Like

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