I'm making a cigarette in Roblox and I want it to work correctly
it made the cig resize to the front.
you can get it yourself here:
https://filetransfer.io/data-package/qKBHvHxS#link
/>
and for people who want the code all you really need to see is this:
for i = bit.Size.X, 0, -0.1 do
local tweenInfo = TweenInfo.new(0.1)
local goal = {}
goal.Size = Vector3.new(i, bit.Size.Y, bit.Size.Z)
local tween = TweenService:Create(bit, tweenInfo, goal)
tween:Play()
wait(0.1)
bit.CFrame = bit.CFrame + bit.CFrame.LookVector * -0.1
end
But seriously, I do recommend downloading the RBXM file and actually testing it.
Also its a tool, so this accounts for rotations.
How to resize a cylinder from one end and move it backwards in Roblox
Programing Coderfunda
December 01, 2023
No comments
Related Posts:
Inertia and React or VueHi just checking your thoughts on whether to learn React or Vue, I want to learn React as it may be better to find work and it has a larger ecosystem … Read More
Write Single Page Applications using Laravel Splade--- Laravel Splade, created by by Pascal Baljet, is a super easy way to build single-page applications (SPA) using Laravel Blade templates. Splade… Read More
Conditionally Assert Throwing An Exception in Pest--- Pest recently added the throwsUnless() method in Pest v2.24 to conditionally verify an exception if a given boolean expression evaluates to fa… Read More
Weekly /r/Laravel Help ThreadAsk your Laravel help questions here. To improve your chances of getting an answer from the community, here are some tips: * What steps have you ta… Read More
Outlook Showing in Process even after closing - C#I am writing a code to such that I will get a trigger when ever outlook opens Process[] processlist = System.Diagnostics.Process.GetProcessesByName("O… Read More
0 comments:
Post a Comment
Thanks