Find any script for Roblox

Enter the name of the game or script.

Faith Clicker script – (Pet Spawner)

More Faith Clicker Scripts code icon


Tap to earn Faith and show your devotion in Faith Clicker! Rebirth to get stronger, discover new worlds and exclusive eggs, and collect pets to earn extra bibles. Compete on the leaderboards and shine with divine power, enhanced by a pet spawner to accelerate your holy journey.

Game link: Faith Clicker

Table of Contents
    Lua
    
    local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
    
    local Window = Rayfield:CreateWindow({
       Name = "Pet Spawner",
       LoadingTitle = "Loading...",
       LoadingSubtitle = "by veemx",
       ConfigurationSaving = {
          Enabled = false
       }
    })
    
    local Tab = Window:CreateTab("Crafting", 4483362458)
    
    local lockedID = "10112609828-35"
    local currentPetName = "Holographic Nugget" -- Default
    
    Tab:CreateInput({
       Name = "Spawn Pet Name",
       PlaceholderText = "Enter Name...",
       RemoveTextAfterFocusLost = false,
       Callback = function(Text)
          currentPetName = Text
       end,
    })
    
    Tab:CreateButton({
       Name = "Spawn",
       Callback = function()
          local args = {
              "CraftPet",
              {
                  currentPetName,
                  "Shadow",
                  {
                      {
                          Locked = false,
                          PetID = lockedID,
                          PetName = currentPetName
                      },
                      {
                          Locked = false,
                          PetID = lockedID,
                          PetName = currentPetName
                      },
                      {
                          Locked = false,
                          PetID = lockedID,
                          PetName = currentPetName
                      }
                  }
              }
          }
    
          local success, err = pcall(function()
              game:GetService("ReplicatedStorage"):WaitForChild("GameClient"):WaitForChild("Events"):WaitForChild("RemoteFunction"):WaitForChild("HandlePet"):InvokeServer(unpack(args))
          end)
    
          if success then
              Rayfield:Notify({Title = "Success", Content = "Crafting " .. currentPetName .. " with ID: " .. lockedID, Duration = 3})
          else
              Rayfield:Notify({Title = "Error", Content = "Execution failed.", Duration = 3})
          end
       end,
    })
      

    Script Features:

    • Pet Spawner – Spawns any pet into your inventory.
    • Script developer: https://www.roblox.com/games/102946159656714/Faith-Clicker


    How to use Faith Clicker script?


    Important information:

    • All scripts are free.
    • All scripts are safe to use.
    • We do not have viruses or malware.

    Leave a Comment

    Your email address will not be published. Required fields are marked *