this is what I have so far
local Item = script.Parent local p = game.Players.LocalPlayer local Handle = Item.Handle local m = p:GetMouse() local function r() local Cube = Instance.new(Part, game.Workspace) Cube.Size = Vector3.new(3.5, 2, 4) local startP = Handle.Position Cube.Position = startP wait(.001) Cube.CFrame = Cube.CFrame:Lerp(m.Hit.Position, .98) end Item.Activated:Connect(function() r() end)
it is working but the alpha your setting it to is .98 which is like 98% of the mouse position set it down to .5 or .6