7.2k Views
wapp room fker
🍕Work at a Pizza PlaceUploaded by 1 year ago
Please login to perform these actions:Description
messes up the whole kitchen space
Comments
4

Offline
karanwalvardaan 1 year ago
doesnt work, trying to call a nil value
Offline
zhad444 11 months ago
@karanwalvardaan it works bruh
Offline
javen 11 months ago
@karanwalvardaan your executor might not be supported then
Offline
nikitascripter 2 weeks ago
I fixed the script, but now the kitchen is a mess. --[[
🍕 Work at a Pizza Place - Cook Room *er (FULLY FIXED v2)
All errors resolved - Now actually works!
]]
_G.cookroom*er = true -- change to false and re-execute to turn off
local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local RunService = game:GetService("RunService")
local lp = Players.LocalPlayer
-- Wait for character
repeat task.wait() until lp.Character and lp.Character:FindFirstChild("HumanoidRootPart")
local remote
-- Method 1: Find the remote from registry
pcall(function()
local reg = (getreg or debug.getregistry)()
if reg then
for i = 1, #reg do
local f = reg[i]
if type(f) == "table" and rawget(f, "FireServer") and rawget(f, "BindEvents") then
remote = f
print("[Remote] Found via registry!")
break
end
end
end
end)
-- Method 2: Search ReplicatedStorage for remotes
if not remote then
pcall(function()
for _, v in ipairs(ReplicatedStorage:GetDescendants()) do
if v:IsA("RemoteEvent") then
local name = v.Name:lower()
if name:find("update") or name:find("property") or name:find("squish") or name:find("dough") then
remote = v
print("[Remote] Found: " .. v:GetFullName())
break
end
end
end
-- If still not found, use any RemoteEvent
if not remote then
for _, v in ipairs(ReplicatedStorage:GetDescendants()) do
if v:IsA("RemoteEvent") then
remote = v