of     1   

Phonicz
#190022541Sunday, May 29, 2016 11:00 PM GMT

Does anyone have an idea what I would need to learn/what I would need to do to make a gui that does this. When players joins: Makes a camera LOCK IN PLACE (something ive been trying to do forever and its still movable up and down q.q) and then circle around a player model and make it possible to change that player model. Anyone got ideas how to start and what to learn for it?
Phonicz
#190024156Sunday, May 29, 2016 11:19 PM GMT

bmp
Phonicz
#190031981Monday, May 30, 2016 12:55 AM GMT

anyone? :C
circa555
#190032438Monday, May 30, 2016 1:02 AM GMT

an easy way to lock the camera is to use clonetrooper1019's cut scene maker and just make multiple 60 second frames in the same position. but then u can't circle the player.
Ortron
#190034175Monday, May 30, 2016 1:27 AM GMT

set cameratype to scriptable and give it a coordinateframe
Hedr0n
#190039451Monday, May 30, 2016 2:47 AM GMT

Here, tell me if it's not uncomplicated. https://www.roblox.com/games/340390927/checkplates-Place
Hedr0n
#190039847Monday, May 30, 2016 2:53 AM GMT

Helpful
Phonicz
#190082454Monday, May 30, 2016 5:38 PM GMT

Omg wow checkplate, Thats great, Im new to camera and advanced gui scripting. So ill take a look at this and fix some errors and redesign stuff. Thanks a lot.
Phonicz
#190082493Monday, May 30, 2016 5:38 PM GMT

It should be able to help me complete my whole project.
Phonicz
#190082721Monday, May 30, 2016 5:41 PM GMT

Also, It seems to work mostly, Only issue is the hair falling down, (Ill probably just anchor it not a huge deal) and when I try to make a 2 player server with it it gives this error: 11:39:24.100 - Replication: Can't create default object of type Players
mrfrogg1
#190084187Monday, May 30, 2016 5:57 PM GMT

So... There is a script for that... The thread: http://wiki.roblox.com/index.php?title=Camera_manipulation shows a script to circle around an object. First, create a LocalScript that would be in the Starterpack, that script would contain this: local target = workspace.Part --Path to the brick to circle. local camera = workspace.CurrentCamera camera.CameraType = Enum.CameraType.Scriptable camera.CameraSubject = target local angle = 0 while wait() do camera.CoordinateFrame = CFrame.new(target.Position) --Start at the position of the part * CFrame.Angles(0, angle, 0) --Rotate by the angle * CFrame.new(0, 0, 5) --Move the camera backwards 5 units angle = angle + math.rad(1) end
Phonicz
#190085581Monday, May 30, 2016 6:12 PM GMT

I already knew the camera placement (putting the camera on a object, or focusing it on a object) But I did not know how to make it rotate, thanks.
Phonicz
#190085636Monday, May 30, 2016 6:13 PM GMT

Anyone know about this error: 11:39:24.100 - Replication: Can't create default object of type Players
mrfrogg1
#190110381Monday, May 30, 2016 11:09 PM GMT

The answer is found here: https://scriptinghelpers.org/questions/26793/replication-cant-create-default-object-of-type-players It says"This error means literally nothing to you. It does not affect your game in any way. However, your issue of code not working online is probably cause by a replication issue. Read up on this [here]." The [Here] is a hyperlink that leads to this link: https://scriptinghelpers.org/blog/it-works-in-studio-but-not-online
Phonicz
#190260930Wednesday, June 01, 2016 11:15 PM GMT

People say, O it doesn't effect your game, It obviously does. Because im getting some things in studio not work in player. q.q
Phonicz
#190269869Thursday, June 02, 2016 1:08 AM GMT

.
SuperSneakyTony
#190271985Thursday, June 02, 2016 1:34 AM GMT

There's a model that circles around the character and is to customize that character. Just search up character customization.
Phonicz
#190365118Friday, June 03, 2016 5:03 PM GMT

@Above I have it, The problem is with that replication error now when I run it as a server.
mrfrogg1
#190399214Saturday, June 04, 2016 1:42 AM GMT

So is the camera causing the replication error?
mrfrogg1
#190399602Saturday, June 04, 2016 1:47 AM GMT

you have to give the script a pathway to the brick... For example... workspace.Part
Phonicz
#192280002Tuesday, June 28, 2016 7:21 PM GMT

So would a localscript work well instead of a regular script?

    of     1