Attempt to compare two userdata values?
Asked by
6 years ago Edited 6 years ago
i was making a menu gui for my game and used the camera's lookvector to tell how far i could move it (only left and right at the moment) and when i compare them (shown in script below) i get an error "Players.the8bitdude11.PlayerGui.LocalScript:8: attempt to compare two userdata values"
02 | leftMax = Vector 3. new(- 0.669129193 , - 0 , - 0.743146181 ) |
03 | rightMax = Vector 3. new( 0.669129193 , - 0 , - 0.743146181 ) |
04 | workspace.CurrentCamera.CameraType = Enum.CameraType.Scriptable |
05 | workspace.CurrentCamera.CFrame = workspace.Part.CFrame |
06 | m = game.Players.LocalPlayer:GetMouse() |
08 | if workspace.CurrentCamera.CFrame.LookVector > leftMax and workspace.CurrentCamera.CFrame.LookVector < rightMax then |
09 | workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, m.Hit.Position) |