Kavra’s Kingdom Script | FREE GAMEPASSES, DOOR SPAM

Created by Jumble

Features:

  • Free Gamepasses: Gives you Paid Faces and Custom Chat Color for free.
  • Door spam: Spams the fuck outta the doors(Gotta be Reception rank or higher)
_G.toggle = true -- Set this to true or false to toggle the door spam


local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:connect(function() 
vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)



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

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!