Guys, I just comitted a Severe error on my script BECAUSE IT DOESN’T WORKS , how do i fix it?, i am not a experienced developer on lua,
locel = workspace.parte2
if locel.Anchered = = false then
print("Do Function")
end
Guys, I just comitted a Severe error on my script BECAUSE IT DOESN’T WORKS , how do i fix it?, i am not a experienced developer on lua,
locel = workspace.parte2
if locel.Anchered = = false then
print("Do Function")
end
Remove the space between = =
.
local Part = workspace.parte2
if not Part.Anchored then -- Check if not anchored. Its basically the same as doing == false
end
worked, Man where did you learn ?, this is incredible
If I had to be honest, I just learned from people’s scripts.
SIKE, one of my brothers, SAME!, i am 6 years scripting, just wanted to see if you guys are kind
The reason why it’s not working is because of spellings errors. Instead of Anchered
, do Anchored
instead. Variables are also spelt wrongly. I understand that you are not experienced with English, but ROBLOX can autocorrect your mispellings (if you had any).
Wow, 6 years. I’ve only been scripting for like 2 months.