of     1   

tec307
#220136354Friday, June 30, 2017 9:02 PM GMT

I need some help... How do i fixate the screen look at the castles i tried rotating the brick and putting it on fixate, but all it does it look back at the ground. Also how do i make the GUI's spin in circles https://www.roblox.com/games/676943626/Kingdom-Rescue-WIP-7-2
PhantomVisual
#220137140Friday, June 30, 2017 9:11 PM GMT

If the GUI is centered then: --Local script for _ = 0, 360, 1 do GUI.Frame.Rotation = _ wait() end To change the camera position, you could do: --Local script workspace.CurrentCamera.CFrame = CFrame.new(0, 0, 0) or you could make it based off of a part: workspace.CurrentCamera.CFrame = workspace.Part.CFrame

    of     1