I don't know how to make a top down shooter camera, and the tutorials I've found don't help with controlling the camera with your mouse.
How do I make a top down shooting camera?
01 | -- Place into StarterPlayerScripts as a LocalScript -- |
02 |
03 | local Player = game:GetService( "Players" ).LocalPlayer |
04 | local Character |
05 | local Humanoid |
06 | local Camera = workspace.CurrentCamera |
07 |
08 | local RunService = game:GetService( "RunService" ) |
09 |
10 | -- Configurable Settings |
11 | local Dampening = 1000 -- Higher number makes it take longer to reach its destination |
12 | local Power = 10000 -- Higher number means more power |
13 | local MaxForce = Vector 3. new( 4000 , 4000 , 4000 ) -- Max amount of power that can be applied on each axis |
14 | -------------------------------------------------------------------------------------------- |
15 |