Probably going to change this later but right now i have a loop detecting if theres a current part, and if there is ill bind a placement action to place the part on m1
coroutine.resume(coroutine.create(function()
while wait() do
if CurrentPart then
if not IsPlaceBinded then ContextActionService:BindAction("PlacePart", Binds, false, Enum.UserInputType.MouseButton1); IsPlaceBinded = true end
else
if IsPlaceBinded then ContextActionService:UnbindAction("PlacePart"); IsPlaceBinded = false end
end
end
end))
as of right now im using variables to define if the bind is binded or not and binding / unbinding based on that
so im wondering if there another way to do this / check if theres already a action binded