Advertisement
ERROR_CODE

Studio designer

Nov 7th, 2023 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Character = game.Players.LocalPlayer.Character
  3. local Camera = workspace.CurrentCamera
  4.  
  5. ScreenGui.Parent = game.PlayerGui
  6.  
  7. local StudioCamera = Instance.new("Part")
  8. StudioCamera.Parent = workspace
  9. StudioCamera.Anchored = true
  10. StudioCamera.Size = Vector3.new(1, 1, 1)
  11. StudioCamera.CanCollide = false
  12. StudioCamera.Position = Vector3.new(X, Y, Z)
  13. StudioCamera.Transparency = 1
  14.  
  15.  
  16. Camera.CameraSubject = StudioCamera
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement