Currently I am working on another Tornado game. What I’m trying to achieve is a tornado Formation animation that plays when the tornado is about the form in the spot that it will form in.
I haven’t been able to find out how to do this because of how obscure tornadoes are in the toolbox and in general
The script I have for when a tornado “Forms” is this
EF5.Parent = workspace -- "Forms"
Status.Value = "An EF5 has formed!"
GamemodesGui.RetroNews.Value = false
GamemodesGui.NormalStatus.Value = true
GamemodesGui.Timer.Value = true
Cloud.Parent = workspace
for i = 120, 0, -1 do
Timer.Value = i
wait(1)
end
EF5.Parent = game.ServerStorage.Tornadoes -- Goes away
If someone could help explain what I would need to do that would be great!