What I Currently have:
I want to make a power ball ability system. I have already made a system to find out when the player presses Q and the fire a remote event which then creates a part.
My Problem:
I can’t figure out how to make the part move to wards the mouse position.
You can fire mouse hit position to server
Example:
local mouse = game.players.localplayer:GetMouse()
local Remote = Tool.RemoteEvent
local Tool = script.Parent
Tool.Deactivated:Connect(function()
Remote:FireServer(mouse.hit.Position)
end)