My clothing group has been struggling to gain any members. I have to tell people about it, and some people don’t even check it out. I’d really appreciate if you joined or affiliate with my group to gain members. CompleteClothing.
The door was working fine, I could pass through, but now I can’t seem too. Not sure if this is the problem but I installed a plugin “Load catalog items” or something like that and a message came up saying “Do you allow scripts to be modified” I’m not sure exactly what it said. Load Catalog Items - Roblox
local groupId = 9155359
local minrank = 200
local StaffOnlyDoor = workspace.StaffOnlyDoor
local Player = game.Players.LocalPlayer
local PlayerRank = Player:GetRankInGroup(groupId)
print("Does the script even work...?")
if PlayerRank >= minrank then
StaffOnlyDoor.CanCollide = false
print("The Door has been opened for: "..Player.Name)
elseif PlayerRank < minrank then
StaffOnlyDoor.CanCollide = true
print("The Door has been disabled for: "..Player.Name)
else
print("What, H O W")
end
Also make sure that the groupId you’re entering is the correct one
Yeah definitely you should, the Output basically gives you what actually printed or not when debugging stuff like this (It also shows you the errors in certain scripts as well)