Make¶
Shorthand for instance declarations.
You probably shouldn't use this function, but if you really really like it, here it is.
local Resources = require(ReplicatedStorage:WaitForChild("Resources")) local Make = Resources:LoadLibrary("Make") Make("TextLabel"){ TextSize = 11; Font = "Arial"; Name = "Yup"; Parent = workspace; }
Make("TextLabel")({ TextSize = 11; Font = "Arial"; Name = "Yup"; Parent = workspace; }, { Name = "So!"; Font = "SourceSans"; }, { Name = "Yellow!"; })