I got this (kind of) fixed, but when I hit start, it didn't play the song or even change the texture. It was only the same texture the whole time. This is the script AGAIN:
local decal = game.Workspace.Part.ParticleEmitter local Sound = Instance.new("Sound", decal) while true do decal.Texture= ("http://www.roblox.com/asset/?id=186290703") Sound.ID = ("http://www.roblox.com/asset/?id=158666489") Sound:Play() wait(30) Sound:Stop() decal.Texture = ("rbxasset://textures/particles/sparkles_main.dds") Sound.ID = ("http://www.roblox.com/asset/?id=155965093") Sound:Play() wait(30) Sound:Stop() end
Please help and I hope you understand! :D
Since my rep is going down for this, I put answered since I am stupid to ask a question to ruin my rep. If you can, please help.
Try doing this, replace [SoundId] with the Sound's Id:
local Part = game.Workspace:WaitForChild('Part') local Decal = Part:WaitForChild('ParticleEmitter') local Sound = Instance.new('Sound', decal) while true do decal.Texture= ('http://www.roblox.com/asset/?id=186290703') Sound.ID = ('rbxassetid://[SoundId]') Sound:Play() wait(30) Sound:Stop() decal.Texture = ('rbxasset://textures/particles/sparkles_main.dds') Sound.ID = ('http://www.roblox.com/asset/?id=155965093') Sound:Play() wait(30) Sound:Stop() end
Locked by Redbullusa and M39a9am3R
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?