#INFINITE YIELD PROBLEM (serverstorage)

9 messages · Page 1 of 1 (latest)

rose merlin
#

model placed in
serverstorage.unclone_.AamTum

zinc gazelle
#

ServerStorage is a service like ReplicatedStorage

#

It's not located in ReplicatedStorage

#
local ServerStorage = game:GetService("ServerStorage")

ServerStorage:WaitForChild("unClone_"):WaitForChild("AamTum")

Also an infinite yield error means this thing does not exist

still rampartBOT
#

studio** You are now Level 3! **studio

stoic sun
#

@rose merlin
Also include a TimeOut limit if you don't want to see the annoying warnings in the output all the time:

local Part = game.Workspace:WaitForChild("Part", 30) -- Will give up waiting for it after 30 seconds, no warning either.
rose merlin
zinc gazelle