of     1   

DatCoder
#155613120Monday, February 09, 2015 2:05 AM GMT

local p = game.Players.LocalPlayer local mouse = p:GetMouse() repeat wait() until p.Character local c = p.Character game:GetService("RunService").RenderStepped:connect(function() --What does here? end) Ruinable, Director of the Aegis Accord.
DatCoder
#155613154Monday, February 09, 2015 2:06 AM GMT

make head aim toward mouse like FPS. Ruinable, Director of the Aegis Accord.
CoffeeFlux
#155613611Monday, February 09, 2015 2:13 AM GMT

c.Head.CFrame = CFrame.new(c.Head.Position, mouse.Hit)
CoffeeFlux
#155613648Monday, February 09, 2015 2:14 AM GMT

though it's not actually that simple, because you have to modify the weld to match that cframe, despite the weld being in a different reference frame that should get you going though

    of     1