i already said use bodygyro and set its cframe property
roblox.com/Turret-Light-item?id=123675737
local BodyGyro = Instance.new("BodyGyro", Part)
BodyGyro.maxTorque = Vector3.new(4e5, 4e5, 4e5)
local Mouse = Game.Players.LocalPlayer:GetMouse()
Mouse.Move:connect(function()
BodyGyro.cframe = Mouse.Hit
end)
Nope, that didn't work at all...
Here's what I'm trying to do...
Shoot a Ki blast wherever the mouse is pointing, by pressing E.
ALL I need to do is get the shooting right, I already have the hotkeys.