A Roblox module that shortens :WaitForChild() verbosity
Instead of this boilerplate
local someInstance = A:WaitForChild("B"):WaitForChild("C"):WaitForChild("D"):WaitForChild("E")Turns into this
local Dot = require( --[[DotWaitForChild Path]] )
local someInstance = Dot.Get(Dot.Wait(A).B.C.D.E)