Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Object's CFrame won't change?

Asked by 6 years ago
Edited 6 years ago

Script

01local function RocketStart(Targets, Hooks, MG, Beams)
02    Gyro.P = 1000
03    Humanoid.AutoRotate = false
04    Targets.Parent = workspace.Terrain
05    Targets.Position = mouse.Hit.Position
06    Hooks.Weld.Part0 = nil
07    Hooks.Parent = MG
08    Hooks.Position = MG.Position
09    Hooks.CFrame = CFrame.new(Hooks.Position, Targets.Position)
10    Beams.Texture = "rbxassetid://2935383234"
11    Beams.Width0 = 1
12    Beams.Width1 = 1
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})
16    tween:Play()
17    tween.Completed:Connect(function()
18        Hookson = true
19        Hooks.Weld.Part0 = Targets
20        RocketAdjust(Rocket, Targets, 400, 7000)
21        Beams.Texture = ""
22        Beams.Width0 = 0.1
23        Beams.Width1 = 0.1
24    end)
25end

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:

1Hooks.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

01local function RocketEnd(Targets, Hooks, MG, Beams)
02    Gyro.P = 0
03    Humanoid.AutoRotate = true
04    Hooks.Anchored = false
05    RocketAdjust(Rocket, HRP, 0, 0)
06    Targets.Parent = nil
07    Beams.Texture = "rbxassetid://2935383234"
08    Beams.Width0 = 1
09    Beams.Width1 = 1
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})
13    tween:Play()
14    tween.Completed:Connect(function()
15        Hookson = false
16        Hooks.Weld.Part0 = MG
17        Beams.Texture = ""
18        Beams.Width0 = 0.1
19        Beams.Width1 = 0.1
20    end)
21end
0
you need three parameters for 'CFrame.new'. Like this : CFrame.new(x,y,z) tree_tree00 48 — 6y
0
Im sure 100% The CFrame are just teleport for parts banktoner 0 — 6y
0
I had this issue with tweening a door. Instead of moving the door it would move the player, my fix was switching to Vector3. Babyseal1015 56 — 6y

1 answer

Log in to vote
0
Answered by
AizakkuZ 226 Moderation Voter
6 years ago
Edited 6 years ago

Try finding a players part by finding a part in this case i’ll use HumanoidRootPart then make the Rocket shoot from that using CFrame
This first finds the part in the character after, it finds
HumanoidRootPart then, put’s whatever part in the position 0,0,0 corresponding to the HumanoidRootPart Please respond and tell me if this helped?

1PARTNAME.Character:FindFirstChild("HumanoidRootPart").CFrame * CFrame.new(0, 0, 0)```
Ad

Answer this question