Script
01 | local function RocketStart(Targets, Hooks, MG, Beams) |
03 | Humanoid.AutoRotate = false |
04 | Targets.Parent = workspace.Terrain |
05 | Targets.Position = mouse.Hit.Position |
06 | Hooks.Weld.Part 0 = nil |
08 | Hooks.Position = MG.Position |
09 | Hooks.CFrame = CFrame.new(Hooks.Position, Targets.Position) |
13 | local Time = ((Hooks.Position - Targets.Position)/ 400 ).Magnitude |
14 | local TweenInfos = TweenInfo.new(Time, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0 , false , 0 ) |
15 | local tween = TweenService:Create(Hooks, TweenInfos, { Position = Targets.Position } ) |
17 | tween.Completed:Connect( function () |
19 | Hooks.Weld.Part 0 = Targets |
20 | RocketAdjust(Rocket, Targets, 400 , 7000 ) |
Explanation
The first part of the script sets everything that will run until the tween is complete, once the tween is complete, it fires a rocket that’s attached to the player by using a function.
Problem
The script is working fine, the only line that I have a problem with is:
1 | Hooks.CFrame = CFrame.new(Hooks.Position, Targets.Position) |
The object (hooks) won’t face it’s target, it will just stay in its original position and rotation instead of facing the target. The line is working, but the object (hooks) won’t change according to the CFrame. How will I fix this? is there something in the function that’s blocking it?
Edited:
Here’s also the second script that end everything that started in the first function
01 | local function RocketEnd(Targets, Hooks, MG, Beams) |
03 | Humanoid.AutoRotate = true |
04 | Hooks.Anchored = false |
05 | RocketAdjust(Rocket, HRP, 0 , 0 ) |
10 | local Time = ((Hooks.Position - MG.Position)/ 400 ).Magnitude |
11 | local TweenInfos = TweenInfo.new(Time, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0 , false , 0 ) |
12 | local tween = TweenService:Create(Hooks, TweenInfos, { Position = MG.Position } ) |
14 | tween.Completed:Connect( function () |