In your code, T
(on line 8) is a global variable that is shared among all trees, so all the trees are updating that variable at the same time. Try putting local
behind it, local T = -99999
.
1 Like
Did you tag the model, or the part itself? If you tagged the model, tag the part instead.
1 Like
Didn’t catch that!
Hopefully that works for them!
1 Like
Oof, unfortunately it’s still not appearing at all…
local CollectionService = game:GetService("CollectionService")
for _,part in CollectionService:GetTagged("TreeTop") do
local pos = part.Position
local pos = Vector3.new(pos.x, pos.y-0.2, pos.z)
local x = 0
local z = 0
local T = -99999
local tall = part.Size.Y / 2
math.randomseed(tick())
local rand = (math.random(0,20))/10
task.spawn(function()
while true do
x = pos.x + (math.sin(T + (pos.x/5)) * math.sin(T/9))/3
z = pos.z + (math.sin(T + (pos.z/6)) * math.sin(T/12))/4
part.CFrame =
CFrame.new(x, pos.y, z) * CFrame.Angles((z-pos.z)/tall, 0,(x-pos.x)/-tall)
task.wait()
T = T + 0.12
end
end)
end
Try this!
1 Like
Actually, I think you should do the same for x
and z
, make them local
so they read local x = 0
and local z = 0
Reason being, all of them might also be sharing the same x
and z
, so they aren’t getting deleted, they’re might just be getting CFramed to the same position.
Yup, it works fine, thank you so much!
Thank you for your assistance, TestAccount was able to find the solution!
3 Likes
No problem! I think before they were all still there, but just had the same CFrame
, which gave the illusion of them being gone.
2 Likes