of     1   

tobyjing2005
#228363105Sunday, December 03, 2017 4:05 AM GMT

local camera = workspace.CurrentCamera local skyboxPart = game.ReplicatedStorage.SkyboxPart:Clone() skyboxPart.Parent = workspace game:GetService("RunService").RenderStepped:connect(function() skyboxPart.Position = camera.CFrame.p end) It reads at an average activity percentage of 30%! I just don't understand it. This script is placed in StarterPlayer < StarterPlayerScripts The loop is causing all the trouble for some reason.
tobyjing2005
#228363163Sunday, December 03, 2017 4:07 AM GMT

Even simply putting print("a") in it gives 8%
TaaRt
#228363403Sunday, December 03, 2017 4:14 AM GMT

Do you know what RenderStepped is and why you're using it?
tobyjing2005
#228363485Sunday, December 03, 2017 4:17 AM GMT

Yup, so it moves the part smoothly.
TaaRt
#228363633Sunday, December 03, 2017 4:22 AM GMT

tobyjing2005
#228363699Sunday, December 03, 2017 4:24 AM GMT

That doesn't help. I've used RenderStepped so many times before. But the problem remains.
tobyjing2005
#228363823Sunday, December 03, 2017 4:28 AM GMT

Somehow fixed it by changing it to this... *facepalm* game:GetService("RunService").RenderStepped:connect(function() skyboxPart.CFrame = camera.CFrame end)

    of     1