You can go at it in two ways.
1 | LocalPlayer.CharacterRemoving:Connect( function (Character) |
5 | LocalPlayer.Character.Humanoid.Died:Connect( function () |
What I wrote above is what you can use to detect if the player has died.
For the fireball:
1 | local Fireball = Instance.new( 'Part' ); |
2 | Fireball.Material = Enum.Material.ForceField; |
3 | Fireball.BrickColor = BrickColor.new( 'Crimson' ); |
4 | Fireball.Size = Vector 3. new( 1.3 , 1.3 , 1.3 ); |
5 | Fireball.Anchored = true ; |
6 | Fireball.Shape = 'Ball' ; |
7 | Fireball.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame + Vector 3. new( 0 , 5 , 0 ); |
8 | Fireball.Parent = workspace; |
This basically makes a ball, you can add emitters, do loops to make it look like it’s floating.
Hope I helped.