Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Sound Script For Tool Not Working!? Trying To Play Sound On The Server

Asked by 5 years ago

I'm trying to get an "Eat" sound to be played, but it doesn't seem to work? Any ideas why?

Local Script

01local animations = {"4614299228"}
02local CanAttack = true
03 
04local Player = game:GetService'Players'.LocalPlayer
05local Character = Player.Character or Player.CharacterAdded:Wait()
06local Head = Character:FindFirstChild("Head")
07local throw= Instance.new("Sound",Head)
08throw.SoundId="rbxassetid://430285057"
09 
10script.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)
View all 26 lines...
0
This is a server or local script? Are any errors thrown? compUcomp 417 — 5y
0
No errors thrown and it's a LocalScript Within A Tool Jomeliter 55 — 5y

1 answer

Log in to vote
0
Answered by
Markdrg 15
5 years ago

Try making another script and putting the sound stuff.

01l
02local Head = Character:FindFirstChild("Head")
03local throw= Instance.new("Sound",Head)
04throw.SoundId="rbxassetid://430285057"
05 
06script.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
17end)

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.

Ad

Answer this question