I am trying to recreate a sandbox tycoon similar to Restaurant Tycoon, but I’m not too sure how I’d go about making the NPCs…
-
What do you want to achieve? Keep it simple and clear!
I am trying to make it so whenever a seat gets placed down in the tycoon, an NPC will spawn and walk into the doorway… I’m not too sure how to achieve this outcome as of yet, and I would appreciate it if someone could either explain this to me, or help. -
What is the issue? Include screenshots / videos if possible!
The issue is that I simply do not know how to make this work.
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Yes, I did look for help on the Dev Forum, YouTube, and Discord Servers. I’ve tried several different scripts with several different outcomes, but none have worked as of yet.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
My current script I am using:
-- Services
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Tycoons = game:GetService("Workspace"):FindFirstChild("Tycoons")
-- Variables
local NPCsFolder = ReplicatedStorage:WaitForChild("NPCs"):GetChildren()
-- Functions
local function spawnNPCs()
for _, tycoon in pairs(Tycoons:GetChildren()) do
if tycoon:GetAttribute("Taken") then
wait(1)
for i, seat in pairs(tycoon.Builds:GetChildren()) do
if seat.Name == "Seat" then
local randomNPC = NPCsFolder[math.random(1, #NPCsFolder)]
local npcClone = randomNPC:Clone()
npcClone:FindFirstChild("HumanoidRootPart").CFrame = tycoon.Building.SpawnPart.CFrame
npcClone.Parent = tycoon.Customers
tycoon.Values.Customers.Value += 1
wait(1)
end
end
end
end
end
-- Signals
while wait(5) do
spawnNPCs()
end