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
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
this what i can only understand
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)