RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"it keeps saying cam is nil please fix"
It seems like the issue is that the `cam` variable is not being assigned properly. Make sure that the path to the `cam` object is correct. Here's a fixed version of the script: -- client script local ReplicatedStorage = game:GetService("ReplicatedStorage") local remoteEvent = ReplicatedStorage.TankREs.Sit remoteEvent.OnClientEvent:Connect(function(cam) if cam then local camera = game.Workspace.CurrentCamera camera.CameraType = Enum.CameraType.Scriptable camera.CFrame = cam.CFrame else print("cam is nil") end end) -- server script local ReplicatedStorage = game:GetService("ReplicatedStorage") local remoteEvent = ReplicatedStorage.TankREs.Sit local cam = workspace.Scripts.Cam -- make sure this path is correct local seat = workspace.Scripts.VehicleSeat -- make sure this path is correct seat:GetPropertyChangedSignal("Occupant"):Connect(function(plr) if seat.Occupant then script.Parent.Enabled = false local player = game.Players:GetPlayerFromCharacter(seat.Occupant.Parent) for _, part in pairs(player.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end else script.Parent.Enabled = true end end) script.Parent.Triggered:Connect(function(plr) seat:Sit(plr.Character.Humanoid) remoteEvent:FireClient(plr, cam) -- make sure to pass the player as the first argument script.Parent.Enabled = false end)