Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How can I make a camera similar to the one of Roblox Studio?

Asked by 7 years ago
Edited 7 years ago

I need someone to make a camera script or teach me how to make a camera script that can be maneuvered by pressing W, A, S, or D. (the normal keys to move a character and the studio's camera) It also has to be able to be rotated with Right-Click & Drag.

Attempted Code:

01local cam = workspace.CurrentCamera
02--cam.CameraSubject = workspace.FreeCamera
03cam.CameraType = "Custom"
04local userInputService = game:GetService("UserInputService")
05local player = game.Players.LocalPlayer
06local X = 0
07local Y = 0
08local Z = 0
09 
10--[[
11    Camera Controls:
12    W = Moves camera forward (+X)
13    A = Moves camera left (-Z?)
14    S = Moves camera backwards (-X)
15    D = Moves camera right (+Z?)
View all 39 lines...

I kinda gave up mid-way so, yeah there's a lot of errors in there.

If you can help me or know someone who can help me, please respond! I really need this. ~Chez_Guy :)

0
Camera scripting should be done completely in Lua now as far as I'm aware, so I'd encourage you to check Roblox's code out. Avigant 2374 — 7y
0
@Avigant I dont know where the code for their camera system is Chez_Guy 67 — 7y
0
I believe L Shift + L will pull up freecam for the game dev only. DaWarTekWizard 169 — 7y
0
^ I remember there was a script for that somewhere in PlayerScripts I think. You could use that and edit the code to work for all players. Note that the script can be complex though. User#20279 0 — 7y

2 answers

Log in to vote
-1
Answered by 7 years ago

You can simply go into ROBLOX studio, and press Left Shift + P to go into "free-cam" mode. From there you can look at the contents of ROBLOX's script.

0
Is the script a localscript named "ControlScript"? Chez_Guy 67 — 7y
0
This doesn't work.. :\ GAM3RBOY2008 0 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

I just noticed this post, Sorry that it took so long for a proper answer. Anyway, I made what you were wondering about. I edited CloneTrooper1090's NoClip script, and here it is (local ofc)

001    -- Basic Freecam Script
002    -- You can move faster by holding the click button [setting below ! :) ]
003local allowspeedmove = true
004wait(1)
005 
006local c = workspace.CurrentCamera
007local player = game.Players.LocalPlayer
008local userInput = game:GetService("UserInputService")
009local rs = game:GetService("RunService")
010local starterPlayer = game:GetService("StarterPlayer")
011--local util = LoadLibrary("RbxUtility")
012--local camSync = util.CreateSignal()
013 
014local selected = false
015local speed = 60
View all 116 lines...

**Yes, I do know you aren't allowed to request things, but I made this anyway, and I wanted to share it with others who may need it. :)

0
Thank you so much for this. I was having alot of trouble trying to recreate one that was even close to as comfy as the original one from the studio elitekiller2342 87 — 4y

Answer this question