-
What do you want to achieve? Keep it simple and clear!
I want to make working Turrets -
What is the issue? Include screenshots / videos if possible!
When the Part looks at the mouse Positon, it goes to fast -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I’ve tried looking for something but couldn’t find anything on the Dev Hub
Here is the Code (Local Script)
local mouse = game.Players.LocalPlayer:GetMouse()
game:GetService("RunService").RenderStepped:Connect(function()
workspace.Part.CFrame = CFrame.lookAt(workspace.Part.Position,mouse.Hit.p)
end)