I’m currently trying to figure out how ArcHandles work as this is my first time using them.
I’ve tried using
local arcHandles = game.Workspace:WaitForChild("Part"):WaitForChild("ArcHandles")
arcHandles.MouseDrag:Connect(function()
print("Test")
end)
And running it as a LocalScript inside of StarterGui
(Also tried using Handles with the code, but that didn’t work with that either.)
I’ve tried looking for other blogs about similar issues but haven’t found anything useful and there aren’t any YouTube tutorials about ArcHandles.
Not sure if I’m doing something wrong or if its a Roblox Studio problem.