I’m not sure how to make this work?
I have this at the moment:
local PROMPT = script.Parent
PROMPT.Triggered:Connect(function(PLR)
end)
I’m not sure how to make this work?
I have this at the moment:
local PROMPT = script.Parent
PROMPT.Triggered:Connect(function(PLR)
end)
You can use :Chat to make this work.
New code:
--//Services
local Chat = game:GetService("Chat")
--//Variables
local NPC = workspace.MyCoolNPC --//Reference your NPC
local ProximityPrompt = script.Parent
--//Functions
ProximityPrompt.Triggered:Connect(function(player)
Chat:Chat(NPC.Head, "hi ".. player.Name, Enum.ChatColor.White)
end)
Hi,
I would rather have it be speech bubbles, is that possible?
It’s literally speech bubbles
I tried it now and it works like intended, thank you so much!
… why you just repeat? Look:
Will this be shown in the chat window?
No, it just shows the speech bubble.
No problem. If you have any more questions, feel free to ask.
Ok thank you so much!
I didnt know that!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.