idk what to do to make it work, please help, thnx ps: this is like one of my previous question but this has another part at the end, it is quite advanced for me so please help me with this one.
function CreatingParts(name, position) local CreateNewPart = Instance.new("Part", workspace) CreateNewPart.Anchored = true CreateNewPart.Position = position CreateNewPart.Name = name print("Done") end CreatingParts("Help", Vector3.new(4, 2.5, 43)) CreatingParts("LOL", Vector3.new(5, 2.5, 43)) CreatingParts("IHML", Vector3.new(6, 2.5, 43)) CreatingParts("HMM", Vector3.new(7, 2.5, 43)) CreatingParts("Meow", Vector3.new(8, 2.5, 43)) CreatingParts("CreativityIntensifies", Vector3.new(9, 2.5, 43)) CreatingParts("Superb", Vector3.new(10, 2.5, 43)) CreatingParts("IDKWHATNAMEISHOULDGIVE", Vector3.new(11, 2.5, 43)) CreatingParts("IDK2", Vector3.new(12, 2.5, 43)) CreatingParts("IDK3", Vector3.new(13, 2.5, 43)) wait(7) if game.Workspace.AriyanHacker29.Humanoid.position ~= Vector3.new(13, 2.5, 39) then wait(1) game:WaitForChild("LOL").BrickColor = BrickColor.new("Really red") end
On line 24, you forgot to add in Workspace so it should be
game.Workspace:WaitForChild("LOL").BrickColor = BrickColor.new("Really red")