#thing exists in server but not in client??
1 messages · Page 1 of 1 (latest)
If you're too far from the part, it may not get loaded by the client, and this also means that it may not be anchored
it is anchored
o maybe
do u have streaming enabled
but it isnt even appearing in explorer
if yes then what Dar said
on client? thats how it works
what?
if you mean on client then yes
** You are now Level 9! **
check workspace properties
but it has to be far
then either disable streaming enabled
or like teleport person to load it idk
i forgot how it works
o ye
i tried teleporting but the teleport didnt work
its a local script in starterplayerscripts
local part = workspace:WaitForChild("CameraPart")
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local player = Players.LocalPlayer
local menu = player:WaitForChild("PlayerGui"):WaitForChild("Menu")
local startButton = menu:WaitForChild("PlayButton")
repeat wait() until player.Character
camera.CameraType = Enum.CameraType.Scriptable
local connection
connection = RunService.RenderStepped:Connect(function()
local position = part.Position + Vector3.new(0, 2, 0)
local lookAt = position + part.CFrame.LookVector
camera.CFrame = CFrame.new(position, lookAt)
end)
local function teleportPlayer(x, y, z)
if player.Character and player.Character:WaitForChild("HumanoidRootPart") then
player.Character.HumanoidRootPart.CFrame = CFrame.new(x, y, z)
end
end
teleportPlayer(-1233.687, 87.718, 262.2)
startButton.MouseButton1Click:Connect(function()
if connection then
connection:Disconnect()
end
camera.CameraType = Enum.CameraType.Custom
camera.CameraSubject = player.Character:FindFirstChild("Humanoid")
teleportPlayer(-56.303, 107.5, 10.278)
end)```
idk