of     1   

FrostOver
#182952833Wednesday, February 03, 2016 11:11 PM GMT

So I have this script that removes the player's character and, sets it to a sphere. Then, it sets the camera follows the sphere, which works fine in Studio no errors. However, when I play online the camera does nothing and there is still no errors. I checked with the console and it did change the Subject and Type. Here's the script: local Event = game.Workspace.Events local Sphr = script.Player:Clone() Event.NewChar.OnServerEvent:connect(function(Player) Player.Character:Destroy() Sphr.Parent = game.Workspace Sphr.Name = Player.Name Player.Character = Sphr game.Workspace.CurrentCamera.CameraSubject = Sphr.Player game.Workspace.CurrentCamera.CameraType = "Follow" end) Hierarchy of the sphere prntscr.com/9ypm9n
FrostOver
#182953759Wednesday, February 03, 2016 11:27 PM GMT

online: Stays midair Studio: prntscr.com/9ypsd0
FrostOver
#182955556Wednesday, February 03, 2016 11:52 PM GMT

Bump Anyone?
FrostOver
#182958098Thursday, February 04, 2016 12:27 AM GMT

Bump 2 ):
FrostOver
#182960631Thursday, February 04, 2016 1:06 AM GMT

Does anybody have any idea? I have what's on the wiki. http://wiki.roblox.com/index.php?title=API:Class/Camera/CameraSubject If you need more information please ask me.
71428
#182960762Thursday, February 04, 2016 1:08 AM GMT

What stays mid air? The camera or the player?
FrostOver
#182960852Thursday, February 04, 2016 1:10 AM GMT

the camera
71428
#182961217Thursday, February 04, 2016 1:17 AM GMT

Is it a local script? I think it needs to be in order to work with game.Workspace.CurrentCamera
FrostOver
#182961461Thursday, February 04, 2016 1:22 AM GMT

yeah I tried that, but I think the problem is that after I change the players Character it doesn't show that i've changed it. maybe I just need a long wait.
Weirdraidercs35
#182961767Thursday, February 04, 2016 1:27 AM GMT

YOU HAVE TO DO PLAYER.CHARACTER.HUMANIOD i messed up with the same thing; worked in studio, not in server
DevelopmentStatus
#182963202Thursday, February 04, 2016 1:49 AM GMT

game.Workspace.CurrentCamera.CameraSubject = Sphr.Player.Humanoid ?

    of     1