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
01 | local Characters = game:GetService( "ReplicatedStorage" ).Characters |
02 | local Event = game:GetService( "ReplicatedStorage" ).ChooseCharacter |
04 | for i,v in pairs (script.Parent:GetChildren()) do |
05 | if v:IsA( "TextButton" ) or v:IsA( "ImageButton" ) then |
06 | v.MouseButton 1 Click:connect( function () |
07 | if Characters:FindFirstChild(v.Name) then |
08 | Event:FireServer(v.Name) |
09 | elseif v.Name = = "PlayerCharacter" then |
10 | Event:FireServer( "PlayerCharacter" ) |
and here is the script in serverscriptservice
01 | local Characters = game:GetService( "ReplicatedStorage" ).Characters |
02 | local Event = game:GetService( "ReplicatedStorage" ).ChooseCharacter |
04 | Event.OnServerEvent:connect( function (player,character) |
05 | if character = = "PlayerCharacter" then |
06 | player:LoadCharacter() |
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 |
15 | player.Character.HumanoidRootPart.Position = humapos |
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)