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

Morph GUI camera is scuffed? Why?

Asked by 3 years ago
Edited 3 years ago

I made a gui that you can click and changes you into another character, it works on Roblox Studio playtest but when you join the actual game on roblox website your camera is scuffed. It makes no errors so I'm confused

First here is the local script in the gui

01local   Characters = game:GetService("ReplicatedStorage").Characters
02local   Event = game:GetService("ReplicatedStorage").ChooseCharacter
03 
04for i,v in pairs (script.Parent:GetChildren()) do
05    if v:IsA("TextButton") or v:IsA("ImageButton") then
06        v.MouseButton1Click:connect(function()
07            if Characters:FindFirstChild(v.Name) then
08                Event:FireServer(v.Name)
09            elseif v.Name == "PlayerCharacter" then
10                Event:FireServer("PlayerCharacter")
11            end
12        end)
13    end
14end

and here is the script in serverscriptservice

01local   Characters = game:GetService("ReplicatedStorage").Characters
02local   Event = game:GetService("ReplicatedStorage").ChooseCharacter
03 
04Event.OnServerEvent:connect(function(player,character)
05    if character == "PlayerCharacter" then
06        player:LoadCharacter()
07    else
08        local char = Characters[character]:Clone()
09        local humapos = player.Character.HumanoidRootPart.Position
10        char.Name = player.Name
11        player:LoadCharacter()
12        player.Character = char
13        player.Character.Parent = workspace
14        wait(.025)
15        player.Character.HumanoidRootPart.Position = humapos
16    end
17end)

here is a picture https://imgur.com/a/iPvYolF here is another picture of what its like in the game https://imgur.com/a/6Lxl6SC Please help, if you answer I will immediately accept your answer (if it works)

0
Can you send a pic showing what it looks like when you play the actual game? sne_123456 439 — 3y
0
k Agent_EpicNoob 71 — 3y
0
done Agent_EpicNoob 71 — 3y
0
hi agent, can you send me a link to the game? sne_123456 439 — 3y

1 answer

Log in to vote
1
Answered by 3 years ago
Edited 3 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.

Hello, I am not 100% sure what's going wrong here but you can confirm the camera type is custom by having this script:

1-- MAKE SURE TO PUT THIS SCRIPT IN A LOCALSCRIPT AND IN STARTERPACK!!!
2 
3local Camera = workspace.CurrentCamera
4 
5while true do
6  Camera.CameraType = Enum.CameraType.Custom
7  wait()
8end

This code makes sure that your camera is the default roblox camera "custom"

Ad

Answer this question