Meteora
This is a spell generated through the Meteor effect, allowing you to hit opponents with a meteor that plummets from the sky to the desired spot. It is possible to move affected opponents by as much as desired
Click on the image to watch the video
soon
How to use
Take the test.lua file as a reference, you can test using command /met and you will trigger this function
function TestMeteora()
local coordsEscena = PZFX.Effects.Utils.GetCoordsBall()
if coordsEscena ~= vector3(0, 0, 0) and coordsEscena ~= nil then
local done = false
local doing = true
while doing do
Wait(0)
if not done then
done = true
SetTimeout(200, function()
PZFX.DONE = false
PZFX.Effects.Meteora(nil, coordsEscena, fx.meteora)
while not PZFX.DONE do Wait(1) end
end)
doing = false
end
end
end
end