of     1   

DigitalEntry
#228303953Friday, December 01, 2017 10:13 PM GMT

v = script.Parent.Parent.canDrop click = script.Parent.ClickDetector function wat(player) if player.TeamColor == script.Parent.Parent.TeamColor.Value then v.Value = true print("Can Drop") elseif v.Value == true then v.Value = false print("Can not Drop") end end click.MouseClick:connect(wat)
DigitalEntry
#228309753Saturday, December 02, 2017 1:09 AM GMT

b There's a Wiki for a reason :))
LuaCymru
#228309905Saturday, December 02, 2017 1:13 AM GMT

v = script.Parent.Parent.canDrop click = script.Parent.ClickDetector click.MouseClick:connect(function(player) if player.TeamColor == script.Parent.Parent.TeamColor.Value then v.Value = true print("Can Drop") else v.Value = false print("Can not Drop") end end)
LaeMVP
#228309914Saturday, December 02, 2017 1:13 AM GMT

player is still in watever team TeamColor.Value is in
DigitalEntry
#228310642Saturday, December 02, 2017 1:34 AM GMT

@Lua Prints "Can drop" and "Can not Drop" want it to change the bool value to true and if it's already true make it false There's a Wiki for a reason :))

    of     1