:SetPrimaryPartCFrame will not function?
Asked by
3 years ago Edited 3 years ago
So, Im trying to make a Octopus Tentacle that plays an attack animation when it spawns. It spawns in a different spawn each time. However, when I try to get it to work, the Tentacle does not move where it should:
01 | local plrs = game.Players:GetChildren() |
03 | repeat wait( 1 ) until game.ReplicatedStorage.Texts.Value = = "2:28" |
05 | local tentacleclone = game.ReplicatedStorage.Tentacle:Clone() |
06 | tentacleclone.Parent = script.Parent |
07 | local spawnpoints = script.Parent.TentacleSpawnPoints:GetChildren() |
08 | local random = math.random( 1 , 9 ) |
10 | local randomspawn = script.Parent.TentacleSpawnPoints [ "SpawnPoint" .. tostring (random) ] |
11 | print (randomspawn.Name) |
12 | print (randomspawn.StartPart.Position) |
13 | tentacleclone:SetPrimaryPartCFrame(CFrame.new(randomspawn.StartPart.Position)) |
14 | for _, v in pairs (tentacleclone:GetChildren()) do |
15 | if v:IsA( "MeshPart" ) then |
16 | v.CFrame = CFrame.Angles(math.rad( 180 ),math.rad(- 360 ),math.rad( 180 )) |
19 | local TweenService = game:GetService( "TweenService" ) |
22 | local moreHeight = tentacleclone.PrimaryPart.Position |
23 | local currentPosition = tentacleclone.PrimaryPart.position |
25 | goal.Position = Vector 3. new(currentPosition.X,moreHeight.Y + 25 ,currentPosition.Z) |
26 | local tweenInfo = TweenInfo.new( 1 ) |
27 | local tween_start = TweenService:Create(tentacleclone.PrimaryPart, tweenInfo, goal) |
29 | until goal.Position.Y > randomspawn.EndPart.Position.Y |
30 | local Animation = tentacleclone.Humanoid:LoadAnimation(tentacleclone:WaitForChild( "Attack" )) |
32 | Animation.Stopped:Wait() |
35 | local moreHeight = tentacleclone.PrimaryPart.Position |
36 | local currentPosition = tentacleclone.PrimaryPart.position |
38 | goal.Position = Vector 3. new(currentPosition.X,moreHeight.Y - 25 ,currentPosition.Z) |
39 | local tweenInfo = TweenInfo.new( 1 ) |
40 | local tween_start = TweenService:Create(tentacleclone.PrimaryPart, tweenInfo, goal) |
42 | until goal.Position.Y < randomspawn.StartPart.Position.Y |
43 | tentacleclone:Destroy() |
I believe my problem is coming from line 13.
If something was unclear, please let me know. Thank you!