#Sound that was placed in Starter Pack Tool plays from Tool's spot in the Workspace
17 messages · Page 1 of 1 (latest)
Try creating the sound object with a script and parenting it to the tools basepart.
Like make a new script
local sound = Instance.new("Sound")
sound.Parent = toolBasepart
sound.SoundId = "rbxassetid://"
sound:Play()
Something along the lines of this
ok and where would i put the sound in the meantime
a storage place im assuming? i just dont know which one
@nocturne delta
Just put the sound in replicatedstorsge or whatever. The script will make a new sound, make sure to set the id. So you don't really need the old one unless you need a reference for the sound settings
** You are now Level 4! **
ok
** You are now Level 3! **
what do i put at toolBasepart?
I tried FlutePart but its just an error
@nocturne delta
You would have to get the path to the basepart. Find the tool object as a child of the character and get the path to the basepart from there.