My Roblox Studio is completely broken. It doesn't comprehend CFrame and tells me to use Vector3, my LocalScripts can't even read anything from the Workspace, I can't use CharacterAdded because it treats it like an object instead of a function, who knows what else is wrong with it.
It would be useful to know the commands you're trying to run, but if doing even simple things like print(workspace:GetChildren())
or
a = Instance.new("Part", workspace) a.Anchored = true b = a:Clone() b.CFrame = a.CFrame + a.CFrame.LookVector * 2.5 b.Parent = workspace print(workspace.Part.CFrame.LookVector)
don't work (you can copy/paste either into the Command Bar and see the result in the Output - the second one should be done in a new Baseplate place) then it definitely sounds very broken and I would recommend reinstalling Roblox Studio.
If those commands do work, there may be other problems, such as:
part.Position = CFrame.new(
, that'll error)