How to make the tool can use if the value = Standless

how to make the value cant use if the value = Standless
like

if you have stand USE = FALSE
if you dont have a stand USE = TRUE

your message was a struggle to read, but I believe you want this:

if not value == Standless then
    --Your code here
end

what if not mean?

if the value not Standless?

If the condition “Value == Standless” is false, then it will run the code

If your question has been resolved, mark it as the solution

I do not get what you are trying to ask for @MadionChooi.

this what i can only understand :sweat_smile:

local Tool = script.Parent

local Standless = false

Tool.Activated:Connect(function()
	if Standless == false then
		
		-- For can use thingy 
		
	else
		-- And the not can use thingy
		
	end
end)