`print("Voice Sounds Script")
local chat = game:GetService("TextChatService").OnIncomingMessage
local HelpSound = script:FindFirstChild("Help")
local PlayerName = game.Players.LocalPlayer.Name
local Head = game.Workspace.PlayerName.FindFirstChild("Head")
if chat == "Help" then
HelpSound.Parent = Head
wait(3)
HelpSound.playing = true
end
if HelpSound.Parent ~= Head then
print("HelpSoundDidNotMove")
wait()
end
if HelpSound.Playing == false then
print("NotPlaying")
wait()
end`
Script is child of starter player scripts not character. The sound is a child of the script itself. I'm very new to scripting I know the basics but this is my attempt at writing something myself without any tutorials so please don't clown on me 😅 . The sounds just doesnt play when I test nothing happens.
** You are now Level 1! **