You mean this when talking about template?
Also i have small problem i can’t get serverstorage from local script(all my other ores used for animations are held there, so lemme change that to replicated storage fast)
You mean this when talking about template?
Yes, that. I didn’t parent it in the script. That’s why it doesn’t show up.
I don’t really understand what is Ore Cluster and what is Template, that both should be parts, but how should it look
I didn’t know what to call it, but OreCluster is just where the ore is coming from. It’s what the miner is mining at to get the ore.
Ohhh the Ore Cluster is map detail just used as an main object to place tycoons, so it defenitely useless, it is just an union made for map decoration
Should i change OreCluster to template in script? Or make an transparency noncollidable part which is welded to my “mining laser” and call it like orespawner(same as OreCluster as i understood)
I guess you can just make that variable the template, and clone that directly.
Okay lemme try that thanks (30 letterssssss)
Alright that really works, but it destroys faster than need
if time >= 0.5 then
should i change that to like
if time >= 1 then
Yeah alright that works, only one problem is it goes a bit at less y pos than model, so it goes off from mining laser. Z and X axes works fine
Yes, you can change that. Just make sure to also change the number of this to the same thing:
(so just remove the / 0.5
)
Yeah that works quite fine, the problem of wrong y axis is because y position of model changes in same moment, could i add like 0.5 or more to y axis in script to it because that happens always
This is because the laser might not be exactly a line between the pivot where the model rotates around, and also the middle of the miner.
Well then add + 1 in
math.rad(angularvelo.X * dt),
math.rad(angularvelo.Y * dt + 1),
math.rad(angularvelo.Z * dt)
Well i tested that and that works a bit better, so i use that thank you very much for help
That part of the CFrame stuff controls the rotation. You can offset the position like this:
current.CFrame =
CFrame.new(OreCluster.Position:Lerp(Miner.Position, time / 0.5) + Vector3.new(0,1,0)) -- position
* CFrame.fromEulerAngles( -- rotation
math.rad(angularvelo.X * dt),
math.rad(angularvelo.Y * dt),
math.rad(angularvelo.Z * dt)
)
Oh sorry, I used Vector2, not Vector3.
Alright that works a lot better thank you for help, btw i was thinking could i use something same like that in that mechanism?
very dumb code:
local Ore = script.Parent
Ore:GetPropertyChangedSignal("Parent"):Connect(function()
wait(11)
Ore.Color = Color3.new(0.227451, 0.231373, 0.262745)
wait(1)
Ore.Color = Color3.new(0.290196, 0.298039, 0.337255)
wait(1)
Ore.Color = Color3.new(0.105882, 0.164706, 0.207843)
wait(1)
Ore.Color = Color3.new(0,0,0)
end)
in a ore
In those tubes, I suggest places nodes in each of the corners in the pipes (where the ore will start moving in a different direction), and just use TweenService on the client to animate those between the nodes.
Well i use tweens, but i can’t change ore color properly, on screen you can see “furnaces” on tube and then like should change color to darker, exactly i use waits for that, but that really sucks code