--BROUGHT TO YOU BY RobloxScripter.com!--
_G.toggle = true -- Set this to true or false to toggle the door spam
for i,v in pairs(game:GetService("Players").LocalPlayer.Configs.Gamepasses:GetDescendants()) do
if v.Value == false then
v.Value = true --Turns all Gamepass values to true, so far only seems to work with paid faces and chatcolor
else if v.Value == Color3.fromRGB(255, 255, 255) then
v.Value = Color3.new(255, 0, 0) -- Set this to the RGB value you want your chat color to be, currently set to red
end
end
end
while _G.toggle == true do
task.wait(0.5) --Can change this to change the speed of it
for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v.Name == "ClickDetector" and v.Parent.Name == "DoorPart" then
fireclickdetector(v)
end
end
end