I want to make this explosion go to the player's mouse but i don't know how.
My Script:
local plr = game.Players.LocalPlayer local mouse = plr:GetMouse() local Explosion = game.ReplicatedStorage.Explosion:Clone() Explosion.Parent = workspace Explosion.CanCollide = false Explosion.Anchored = true Explosion.CFrame = --I don't know what to put here
You can get the mouse's 3D position, using Mouse.Hit:
Explosion.CFrame = mouse.Hit