Greetings, fellow developers!
I have a question that has been bugging me for a while now. Is it possible to make it rain spaghetti in my Roblox game? I’ve tried using the ParticleEmitter function to emit spaghetti particles, but they just fall straight down and don’t look very realistic. Do you guys have any ideas on how I can make it rain spaghetti and make it look like the spaghetti is actually falling from the sky?
Code:
local spaghetti = game.Workspace:WaitForChild("Spaghetti")
while true do
local spaghettiParticle = Instance.new("ParticleEmitter")
spaghettiParticle.Texture = "http://www.roblox.com/asset/?id=569897274"
spaghettiParticle.Lifetime = NumberRange.new(5)
spaghettiParticle.Rate = 1000
spaghettiParticle.RotSpeed = NumberRange.new(100, 200)
spaghettiParticle.VelocityInheritance = 1
spaghettiParticle.Acceleration = Vector3.new(0, -50, 0)
spaghettiParticle.Enabled = true
spaghettiParticle.Parent = spaghetti
wait(1)
end