The arc handles instance is in player gui,
local script:
local arc = Instance.new("ArcHandles",script.Parent)
arc.Adornee = game.Workspace:WaitForChild("Part")
The arc handles instance is in player gui,
local script:
local arc = Instance.new("ArcHandles",script.Parent)
arc.Adornee = game.Workspace:WaitForChild("Part")
Note I myself did not use ArcHandles before, but this is my guess to what’s wrong. Any critism or addition to this post is appreciated!
Yes, to the player gui
Yes
Its visible not transparent
4.No whats that
I am guessing the solution is something “simple”, but if you wish to set the the Axes
property you need to use the Axes
datatype
How to set arc axis? tell me about arc
You should use arc.Axes = Axes.new()
there are some properties you can change of Axes.new()
as well which are explained in the wiki I sent before.
local arc = Instance.new("ArcHandles",script.Parent)
arc.Adornee = game.Workspace:WaitForChild("Part")
arc.Axes = Axes.new(game.Workspace:WaitForChild("Part").CFrame.RightVector)
Like this?