#How to make an arm that widens (But in one direction)
26 messages · Page 1 of 1 (latest)
size
@unique python When I use Size its enlargement of both sides my arm I want its to do it just for one side
just change its cframe with the size
Ok ok
** You are now Level 2! **
script.Parent.Righthand.Size = CFrame.new(0,8,0)
it work?
you gotta change the weld too
or make another part overlaying the arm
@royal quarry
weld offset
change the weld offset
or just make another part overlaying the arm
so it doesnt move the character
Ok
how can i do that?
weld.C0 & weld.C1
oh ok
All right
weld.C0 and C1 work like this
local part0 = script.Parent -- example part
local part1 = game.Workspace.Part1 -- other example part
local weld = Instance.new("Weld")
weld.Parent = part0
weld.Part0 = part0
weld.Part1 = part1
weld.C0 = part0.CFrame
weld.C1 = part0.CFrame * CFrame.new(0, 8, 0)
you get it?