Hello, I’m trying to animate a billboard gui however its not positioned straight. Look:
See how its not alligned?
Here is my code:
local clone = RepAssets.Emotion:Clone()
clone.Parent = petmodel
clone.Size = UDim2.new(0,0,0,0)
clone.StudsOffset = Vector3.new(0,0,0)
task.wait(.1)
local tween = TweenService:Create(clone, TweenInfo.new(.2, Enum.EasingStyle.Linear), {
["Size"] = UDim2.new(2,0,2,0),
["StudsOffset"] = Vector3.new(0, 2.5, 0)
})
tween:Play()
tween.Completed:Wait()
2 Likes
maybe try making the billboard clone adornee to a part that is centered?
okay I tried this but its still off. It seems to consistently be leanign toward the right a bit
Erex_147
(Erex)
#4
try studs offset world instead of studs offset
Okay I think that worked. Thanks
Erex_147
(Erex)
#6
You’re welcome!
roblx ahjssjald
system
(system)
Closed
#7
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.