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

:SetPrimaryPartCFrame will not function?

Asked by
Oxprem 140
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:

01local plrs = game.Players:GetChildren()
02for i = 1, #plrs do
03    repeat wait(1) until game.ReplicatedStorage.Texts.Value == "2:28"
04    while wait(3) do
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)
09        print(random)
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
View all 45 lines...

I believe my problem is coming from line 13. If something was unclear, please let me know. Thank you!

Answer this question