I'm trying to get an "Eat" sound to be played, but it doesn't seem to work? Any ideas why?
Local Script
01 | local animations = { "4614299228" } |
02 | local CanAttack = true |
03 |
04 | local Player = game:GetService 'Players' .LocalPlayer |
05 | local Character = Player.Character or Player.CharacterAdded:Wait() |
06 | local Head = Character:FindFirstChild( "Head" ) |
07 | local throw = Instance.new( "Sound" ,Head) |
08 | throw.SoundId = "rbxassetid://430285057" |
09 |
10 | script.Parent.Activated:connect( function () |
11 | if CanAttack = = true then |
12 | CanAttack = false |
13 | local animation = Instance.new( "Animation" , script.Parent.Parent) |
14 | animation.AnimationId = "http://www.roblox.com/asset?id=" ..animations [ math.random( 1 , #animations) ] |
15 | local chosenanim = script.Parent.Parent.Humanoid:LoadAnimation(animation) |
Try making another script and putting the sound stuff.
01 | l |
02 | local Head = Character:FindFirstChild( "Head" ) |
03 | local throw = Instance.new( "Sound" ,Head) |
04 | throw.SoundId = "rbxassetid://430285057" |
05 |
06 | script.Parent.Activated:connect( function () |
07 |
08 | throw:Play() |
09 | wait(. 5 ) |
10 | script.Parent.Handle.Transparency = 1 |
11 | wait(. 5 ) |
12 | throw:Stop() |
13 | wait( 1 ) |
14 | script.Parent.Handle.Transparency = 0 |
15 |
16 | end |
17 | end ) |
If that doesnt work, try making a sound and putting the soundid in it and just play it in the script. instead of making a new sound.